]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/rc
Added useful global zsh aliases.
[config/dotfiles.git] / zsh / rc
1 # Zsh configuration file.
2
3
4 # Use Vi(m) style key bindings.
5 bindkey -v
6
7 # Use history and store it in ~/.zsh/history.
8 HISTSIZE=1000
9 SAVEHIST=1000
10 HISTFILE=~/.zsh/history
11 # Append to the history file instead of overwriting it and do it immediately
12 # when a command is executed.
13 setopt appendhistory
14 setopt incappendhistory
15 # If the same command is run multiple times store it only once in the history.
16 setopt histignoredups
17 # Vim like completions of previous executed commands.
18 bindkey "^P" history-beginning-search-backward
19 bindkey "^N" history-beginning-search-forward
20
21 # Prevent overwriting existing files with '> filename'.
22 setopt noclobber
23
24 # Entering the name of a directory (if it's not a command) will automatically
25 # cd to that directory.
26 setopt autocd
27
28 # When entering a nonexistent command name automatically try to find a similar
29 # one.
30 setopt correct
31
32 # Use colorized output.
33 autoload -U colors && colors
34 # Set the default prompt. The current host and working directory is displayed,
35 # the exit code of the last command if it wasn't 0 and a + if this shell is
36 # running inside another shell.
37 # The prompt is in green and blue to make easily detectable, the error exit
38 # code in red and bold.
39 PROMPT="%{${fg[green]}%}%B%m%b%{${fg[default]}%}:\
40 %{${fg[blue]}%}%B%~%b%{${fg[default]}%} %(2L.+.)%# \
41 %(?..(%{${fg[red]}%}%B%?%b%{${fg[default]}%}%) )"
42
43 # Use new completion system.
44 autoload -U compinit && compinit
45 # Make sure the list of possible completions is displayed after pressing <TAB>
46 # the first time.
47 setopt nolistambiguous
48 # Use cache to speed up completions.
49 zstyle ':completion:*' use-cache on
50 zstyle ':completion:*' cache-path ~/.zsh/cache
51 # Ignore case if currently typed string doesn't match.
52 zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}'
53
54 # Enable zsh's extended glob abilities.
55 setopt extendedglob
56
57 # If ^C is pressed while typing a command, copy it in the kill buffer so it can
58 # be "yanked" later and then abort like ^C normally does. This is useful when I
59 # want to abort an command to do something in between and then finish typing
60 # the command.
61 TRAPINT() {
62     # Kill the current buffer so it gets stored and can be retrieved later with
63     # "yank". Then yank it so it gets displayed (otherwise I don't know which
64     # command I aborted).
65     zle && zle kill-buffer && zle yank
66
67     # Return the default exit code so zsh aborts the current command line.
68     return $1
69 }
70 # Make sure ^Y is bound to yank, necessary for the TRAPINT function to work as
71 # excepted.
72 bindkey "^Y" yank
73
74 # Simplify calls to less, automatically redirects all output.
75 alias -g L='2>&1 | less'
76 # Simplify calls to colordiff, output is also piped through less.
77 alias -g D='2>&1 | colordiff L'
78 # Simplify calls to grep.
79 alias -g G='| grep'
80
81
82 # If a rc.local file exists load it, otherwise load a rc file for the current
83 # hostname (first part before a dot) if it exists.
84 host=${$(hostname)//.*/}
85 if [[ -f ~/.zsh/rc.local ]]; then;
86     source ~/.zsh/rc.local
87 elif [[ -f ~/.zsh/rc.$host ]]; then;
88     source ~/.zsh/rc.$host
89 fi