diff options
Diffstat (limited to 'user-profiles')
-rw-r--r-- | user-profiles/zsh/zshrc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/user-profiles/zsh/zshrc b/user-profiles/zsh/zshrc index 7d0c1a16..ed614182 100644 --- a/user-profiles/zsh/zshrc +++ b/user-profiles/zsh/zshrc | |||
@@ -24,9 +24,18 @@ setopt ignore_eof | |||
24 | bindkey -e | 24 | bindkey -e |
25 | bindkey ';5C' emacs-forward-word | 25 | bindkey ';5C' emacs-forward-word |
26 | bindkey ';5D' emacs-backward-word | 26 | bindkey ';5D' emacs-backward-word |
27 | bindkey '^[[1;5C' emacs-forward-word | ||
28 | bindkey '^[[1;5D' emacs-backward-word | ||
29 | bindkey '^H' backward-kill-word | ||
27 | 30 | ||
28 | autoload -Uz url-quote-magic bracketed-paste-magic | 31 | autoload -Uz url-quote-magic bracketed-paste-magic |
29 | zle -N self-insert url-quote-magic | 32 | zle -N self-insert url-quote-magic |
30 | zle -N bracketed-paste bracketed-paste-magic | 33 | zle -N bracketed-paste bracketed-paste-magic |
31 | 34 | ||
32 | setopt extended_glob | 35 | setopt extended_glob |
36 | |||
37 | alias -g L='| less' | ||
38 | alias -g S='&> /dev/null' | ||
39 | alias -g G='| grep' | ||
40 | alias -g B='&> /dev/null &' | ||
41 | alias -g BB='&> /dev/null &!' | ||