diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-09-23 08:28:07 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-09-23 08:28:07 +0200 |
commit | 9416e3c3bbd1383d06e8056e21000d7163b8d51e (patch) | |
tree | d1e827e08d1fdfeda28aebdb8907bf5afc91dd5d /bashrc | |
parent | fb0f97b12ea677c266ff616b736a74dd917b12fa (diff) | |
download | bin-9416e3c3bbd1383d06e8056e21000d7163b8d51e.zip bin-9416e3c3bbd1383d06e8056e21000d7163b8d51e.tar.gz |
bashrc: comment off completion setup, add systemctl and thefuck aliases
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -36,11 +36,11 @@ fi set -o vi # bind "set completion-display-width 1" -bind "set completion-ignore-case off" -bind "set completion-prefix-display-length 2" -bind "set menu-complete-display-prefix on" -bind "set show-all-if-ambiguous on" -bind "Control-t: menu-complete" +#bind "set completion-ignore-case off" +#bind "set completion-prefix-display-length 2" +#bind "set menu-complete-display-prefix on" +#bind "set show-all-if-ambiguous on" +#bind "Control-t: menu-complete" # ALIASES #alias vimb="vim -u $HOME/.vimrc-bepo" @@ -134,6 +134,8 @@ my_export 'EDITOR' 'vim' '/usr/bin/vi' # catch and eval dmalloc output #function dmalloc { eval `command dmalloc -b $*`; } #alias lss="ls -l" +alias sct="systemctl" +alias fuck='eval $(thefuck $(fc -ln -1)); history -r' # MISC export SDL_AUDIODRIVER="pulse" |