]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/rc
Minor documentation fixes.
[config/dotfiles.git] / zsh / rc
1 # Zsh configuration file.
2
3
4 # Use Vi(m) style key bindings.
5 bindkey -v
6
7 # Be paranoid, new files are readable/writable by me only.
8 umask 077
9
10 # Use history and store it in ~/.zsh/history.
11 HISTSIZE=1000
12 SAVEHIST=1000
13 HISTFILE=~/.zsh/history
14 # Append to the history file instead of overwriting it and do it immediately
15 # when a command is executed.
16 setopt appendhistory
17 setopt incappendhistory
18 # If the same command is run multiple times store it only once in the history.
19 setopt histignoredups
20 # Vim like completions of previous executed commands.
21 bindkey "^P" history-beginning-search-backward
22 bindkey "^N" history-beginning-search-forward
23
24 # Prevent overwriting existing files with '> filename', use '>| filename'
25 # (or >!) instead.
26 setopt noclobber
27
28 # Entering the name of a directory (if it's not a command) will automatically
29 # cd to that directory.
30 setopt autocd
31
32 # When entering a nonexistent command name automatically try to find a similar
33 # one.
34 setopt correct
35
36 # Use colorized output, necessary for prompts and completions.
37 autoload -U colors && colors
38
39 # Set the default prompt. The current host and working directory is displayed,
40 # the exit code of the last command if it wasn't 0, the number of running jobs
41 # if not 0 and a + if this shell is running inside another shell.
42 # The prompt is in green and blue to make easily detectable, the error exit
43 # code in red and bold and the job count in yellow.
44 PROMPT="%{${fg[green]}%}%B%m%b%{${fg[default]}%}:\
45 %{${fg[blue]}%}%B%~%b%{${fg[default]}%} \
46 %(1j.%{${fg[yellow]}%}%j%{${fg[default]}%}.)%(2L.+.)%# \
47 %(?..(%{${fg[red]}%}%B%?%b%{${fg[default]}%}%) )"
48
49 # Use new completion system.
50 autoload -U compinit && compinit
51 # Load the complist module which provides additions to completion lists
52 # (coloring, scrollable).
53 zmodload zsh/complist
54 # Make sure the list of possible completions is displayed after pressing <TAB>
55 # the first time.
56 setopt nolistambiguous
57 # Allow completions in the middle of a text, i.e. "/usr/bin/<TAB>whatever"
58 # completes like "/usr/bin/<TAB>". Useful when adding new options to commands.
59 bindkey "^I" expand-or-complete-prefix
60 # Use cache to speed up completions.
61 zstyle ':completion:*' use-cache on
62 zstyle ':completion:*' cache-path ~/.zsh/cache
63 # Try uppercase if the currently typed string doesn't match. This allows
64 # typing in lowercase most of the time and completion fixes the case.
65 zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}'
66 # Ignore completion functions.
67 zstyle ':completion:*:functions' ignored-patterns '_*'
68 # Ignore parent directory.
69 zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd
70 # Use ls like colors for completions.
71 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
72 # Make completion lists scrollable so "do you wish to see all n possibilities"
73 # is no longer displayed.
74 zstyle ':completion:*' list-prompt '%p'
75 # When unsetting variables make sure every variable name is only suggested
76 # once.
77 zstyle ':completion:*:unset:*' ignore-line yes
78 # When working with mercurial don't complete the same file multiple times.
79 zstyle ':completion:*:hg*:*' ignore-line yes
80
81 # Enable zsh's extended glob abilities.
82 setopt extendedglob
83
84 # Don't exit if <C-d> is pressed.
85 setopt ignoreeof
86
87 # Autoload add-zsh-hook to add/remove zsh hook functions easily.
88 autoload -Uz add-zsh-hook
89
90 # If ^C is pressed while typing a command, add it to the history so it can be
91 # easily retrieved later and then abort like ^C normally does. This is useful
92 # when I want to abort an command to do something in between and then finish
93 # typing the command.
94 TRAPINT() {
95     # Store the current buffer in the history.
96     zle && print -s $BUFFER
97
98     # Return the default exit code so zsh aborts the current command.
99     return $1
100 }
101
102 # Simplify calls to less, automatically redirects all output.
103 alias -g L='2>&1 | less'
104 # Simplify calls to colordiff, output is also piped through less.
105 alias -g D='2>&1 | colordiff L'
106 # Simplify calls to grep.
107 alias -g G='| grep'
108
109 # Automatically use unified diffs.
110 alias diff='diff -u'
111
112 # Display all files and use human readable sizes.
113 alias du='du -sh'
114
115 # Multiple files given to Vim are opened in tabs.
116 alias vim='vim -p'
117 # Shortcuts for Vim.
118 alias v='vim'
119 alias vi='vim'
120
121 # Exit binding like in Vim.
122 alias :q='exit'
123
124 # Edit the mercurial patch queue series file for the current mercurial
125 # repository in Vim. Also change Vim's pwd to the patches directory so other
126 # patches can easily be opened.
127 alias vqs='vim -c "cd $(hg root)/.hg/patches/" "$(hg root)/.hg/patches/series"'
128
129 # Make going up directories simple.
130 alias -g ...='../..'
131 alias -g ....='../../..'
132
133 # Improved ls which displays the files in columns (-C), visualizes directories,
134 # links and other special files (-F) and pages everything through less (L).
135 #
136 # If available use GNU ls with colorized output. If it isn't available use
137 # normal ls which needs CLICOLOR_FORCE so it displays colors when used with a
138 # pager.
139 ls --color &> /dev/null
140 if [[ $? -eq 0 ]]; then
141     alias ls='ls --color'
142 else
143     alias ls='CLICOLOR_FORCE=1 ls -G'
144 fi
145 # Main ls function.
146 function ls() {
147     command ls -C -F $* L
148 }
149 # Helper function to list all files.
150 function la() {
151     ls -a $*
152 }
153 # Helper function to list all files in list format with access rights, etc.
154 function ll() {
155     la -l $*
156 }
157
158
159 # Load rc file for current OS.
160 source_config ~/.zsh os rc $(uname) nolocal
161 # Load rc file for current hostname (first part before a dot) or rc.local.
162 source_config ~/.zsh host rc ${$(hostname)//.*/}