1 # Zsh configuration file.
4 source_debug ". ~/.zsh/rc"
6 # MISCELLANEOUS SETTINGS
8 # Be paranoid, new files are readable/writable by me only.
14 # Prevent overwriting existing files with '> filename', use '>| filename'
18 # Entering the name of a directory (if it's not a command) will automatically
19 # cd to that directory.
22 # When entering a nonexistent command name automatically try to find a similar
26 # Enable zsh's extended glob abilities.
29 # Don't exit if <C-d> is pressed.
35 # Not all bindings are done here, only those not specific to a given section.
37 # Use Vi(m) style key bindings.
40 # Also use jj to exit insert mode.
41 bindkey 'jj' vi-cmd-mode
43 # I don't need the arrow keys, I use ^N and ^P for this (see below).
44 bindkey -r '^[OA' '^[OB' '^[OC' '^[OD' '^[[A' '^[[B' '^[[C' '^[[D'
45 # Also not in Vi mode.
46 bindkey -a -r '^[OA' '^[OB' '^[OC' '^[OD' '^[[A' '^[[B' '^[[C' '^[[D'
51 # Make sure every entry in $fpath is unique.
53 # ~/.zsh/functions/completion is a symbolic link to the Completion directory
54 # of a Zsh CVS checkout. Use it to get the newest completions if available.
55 if [[ -d ~/.zsh/functions/completion ]]; then
56 fpath=(~/.zsh/functions/completion/*/*(/) $fpath)
58 # Set correct fpath to allow loading my functions (including completion
60 fpath=(~/.zsh/functions $fpath)
61 # Autoload my functions (except completion functions and hidden files). Thanks
62 # to caphuso from the Zsh example files for this idea.
63 if [[ -d ~/.zsh/functions ]]; then
64 autoload -Uz ${fpath[1]}/^_*(^/:t)
67 # Simulate hooks using _functions arrays for Zsh versions older than 4.3.4. At
68 # the moment only precmd(), preexec() and chpwd() are simulated.
70 # At least 4.3.4 (not sure about later versions) has an error in add-zsh-hook
71 # so the compatibility version is used there too.
72 if [[ $ZSH_VERSION != (4.3.<5->|4.<4->*|<5->*) ]]; then
73 # Provide add-zsh-hook which was added in 4.3.4.
74 fpath=(~/.zsh/functions/compatibility $fpath)
76 # Run all functions defined in the ${precmd,preexec,chpwd}_functions
79 for function in $precmd_functions; do
84 for function in $preexec_functions; do
89 for function in $chpwd_functions; do
95 # Autoload add-zsh-hook to add/remove zsh hook functions easily.
96 autoload -Uz add-zsh-hook
98 # Load zmv (zsh move) which is powerful to rename files.
104 # Use history and store it in ~/.zsh/history.
107 HISTFILE=~/.zsh/history
108 # Append to the history file instead of overwriting it and do it immediately
109 # when a command is executed.
111 setopt incappendhistory
112 # If the same command is run multiple times store it only once in the history.
113 setopt histignoredups
114 # Vim like completions of previous executed commands (also enter Vi-mode). If
115 # called at the beginning it just recalls old commands (like cursor up), if
116 # called after typing something, only lines starting with the typed are
117 # returned. Very useful to get old commands quickly. Thanks to Mikachu in #zsh
118 # on Freenode (2010-01-17 12:47 CET) for the information how to a use function
120 zle -N my-vi-history-beginning-search-backward
121 my-vi-history-beginning-search-backward() {
122 local not_at_beginning_of_line
123 if [[ $CURSOR -ne 0 ]]; then
124 not_at_beginning_of_line=yes
127 zle history-beginning-search-backward
129 # Start Vi-mode and stay at the same position (Vi-mode moves one left,
132 if [[ -n $not_at_beginning_of_line ]]; then
136 bindkey '^P' my-vi-history-beginning-search-backward
137 bindkey -a '^P' history-beginning-search-backward # binding for Vi-mode
138 # Here only Vi-mode is necessary as ^P enters Vi-mode and ^N only makes sense
140 bindkey -a '^N' history-beginning-search-forward
145 # Use colorized output, necessary for prompts and completions.
146 autoload -Uz colors && colors
148 # Necessary for $EPOCHSECONDS, the UNIX time.
149 zmodload zsh/datetime
151 # Some shortcuts for colors. The %{...%} tells zsh that the data in between
152 # doesn't need any space, necessary for correct prompt draw.
153 local red="%{${fg[red]}%}"
154 local blue="%{${fg[blue]}%}"
155 local green="%{${fg[green]}%}"
156 local yellow="%{${fg[yellow]}%}"
157 local default="%{${fg[default]}%}"
159 # vcs_info was added in 4.3.9 but it works in earlier versions too. So load it
160 # if the necessary files are available in ~/.zsh/functions/vcs_info (often a
161 # symbolic link to current checkout of Zsh's sources).
162 if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) ||
163 -d ~/.zsh/functions/vcs_info ]]; then
164 # Update fpath to allow loading the vcs_info functions.
165 if [[ -d ~/.zsh/functions/vcs_info ]]; then
166 fpath=(~/.zsh/functions/vcs_info/
167 ~/.zsh/functions/vcs_info/Backends
171 # Load vcs_info to display information about version control repositories.
172 autoload -Uz vcs_info
173 # Only look for git and mercurial repositories; the only I use.
174 zstyle ':vcs_info:*' enable git hg
175 # Check the repository for changes so they can be used in %u/%c (see
176 # below). This comes with a speed penalty for bigger repositories.
177 zstyle ':vcs_info:*' check-for-changes true
179 # Set style of vcs_info display. The current branch (green) and VCS (blue)
180 # is displayed. If there is an special action going on (merge, rebase)
181 # it's also displayed (red). Also display if there are unstaged or staged
183 if [[ $ZSH_VERSION == (4.3.<11->|4.<4->*|<5->*) ||
184 -d ~/.zsh/functions/vcs_info ]]; then
185 zstyle ':vcs_info:*' formats \
186 "($green%b%u%c$default:$blue%s$default)"
187 zstyle ':vcs_info:*' actionformats \
188 "($green%b%u%c$default/$red%a$default:$blue%s$default)"
190 # In older versions %u and %c are not defined yet and are not
191 # correctly expanded.
192 zstyle ':vcs_info:*' formats \
193 "($green%b$default:$blue%s$default)"
194 zstyle ':vcs_info:*' actionformats \
195 "($green%b$default/$red%a$default:$blue%s$default)"
197 # Set style for formats/actionformats when unstaged (%u) and staged (%c)
198 # changes are detected in the repository; check-for-changes must be set to
199 # true for this to work. Thanks to Bart Trojanowski
200 # (http://jukie.net/~bart/blog/pimping-out-zsh-prompt) for the idea
201 # (2010-03-11 00:20 CET).
202 zstyle ':vcs_info:*' unstagedstr '¹'
203 zstyle ':vcs_info:*' stagedstr '²'
205 # Default to running vcs_info. If possible we prevent running it later for
206 # speed reasons. If set to a non empty value vcs_info is run.
209 # Cache system inspired by Bart Trojanowski
210 # (http://jukie.net/~bart/blog/pimping-out-zsh-prompt).
211 #zstyle ':vcs_info:*+pre-get-data:*' hooks pre-get-data
213 # Only Git and Mercurial support and need caching. Abort if any other
215 [[ "$vcs" != git && "$vcs" != hg ]] && return
217 # If the shell just started up or we changed directories (or for other
218 # custom reasons) we must run vcs_info.
219 if [[ -n $FORCE_RUN_VCS_INFO ]]; then
224 # Don't run vcs_info by default to speed up the shell.
226 # If a git/hg command was run then run vcs_info as the status might
227 # need to be updated.
228 case "$(fc -ln $(($HISTCMD-1)))" in
238 # Must run vcs_info when changing directories.
242 add-zsh-hook chpwd prompt_chpwd
244 # Used by prompt code below to determine if vcs_info should be run.
250 # Set the prompt. A two line prompt is used. On the top left the current
251 # working directory is displayed, on the right vcs_info (if available). On the
252 # bottom left current user name and host is shown, the exit code of the last
253 # command if it wasn't 0, the number of running jobs if not 0.
255 # The prompt is in green and blue to make easily detectable, the error exit
256 # code in red and bold and the job count in yellow.
258 # Thanks to Adam's prompt for the basic idea of this prompt.
260 # The current time is display in hex in the right prompt.
262 # Regex to remove elements which take no space. Used to calculate the
263 # width of the top prompt. Thanks to Bart's and Adam's prompt code in
264 # Functions/Prompts/prompt_*_setup.
265 local zero='%([BSUbfksu]|([FB]|){*})'
267 # Call vcs_info before every prompt.
268 if [[ -n $RUN_VCS_INFO ]]; then
274 local width width_left width_right
275 local top_left top_right
277 # Display the current time in HEX in bright blue and vcs_info (if used) on
278 # the right in the top prompt.
279 top_right="$vcs_info_msg_0_($blue%B0x$(([##16] EPOCHSECONDS))%b$default)"
280 width_right=${#${(S%%)top_right//$~zero/}}
281 # Remove it if it would get too long.
282 if [[ $(( COLUMNS - 4 - 1 - width_right )) -lt 0 ]]; then
287 # Display current directory on the left in the top prompt. Truncate the
288 # directory if necessary.
289 width=$(( COLUMNS - 4 - 1 - width_right ))
290 top_left=".-$default%b($yellow%$width<..<%~%<<$default)%B$blue"
292 # Calculate the width of the top prompt to fill the middle with "-".
293 width_left=${#${(S%%)top_left//$~zero/}}
294 width_right=${#${(S%%)top_right//$~zero/}}
295 width=$(( COLUMNS - width_left - width_right ))
297 PROMPT="$blue%B$top_left${(l:$width::-:)}%b$default$top_right
299 $green%B%n%b$default@$green%B%m%b$default %(1j.$yellow%j$default.)%# \
300 %(?..($red%B%?%b$default%) )"
302 add-zsh-hook precmd prompt_precmd
305 # When screen, xterm or rxvt is used set the name of the window to the
306 # currently running program.
308 # When a program is started preexec() sets the window's name to it; when it
309 # stops precmd() resets the window's name to 'zsh'.
311 # It works with screen, xterm and rxvt.
313 # If a command is run with sudo or if the shell is running as root then a ! is
314 # added at the beginning of the command to make this clear. If a command is
315 # running on a different computer with ssh a @ is added at the beginning. If
316 # screen is running on the remote machine instead of @screen @:hostname
317 # (hostname replaced by the machine's hostname) is displayed. This only works
318 # if the .zshrc on the server also uses this command.
320 # screen* is necessary as `screen` uses screen.linux for example for a linux
322 if [[ $TERM == screen* || $TERM == xterm* || $TERM == rxvt* ]]; then
323 # Is set to a non empty value to reset the window name in the next
326 # Is set to a non empty value when the shell is running as root.
327 if [[ $UID -eq 0 ]]; then
332 # Get the program name with its arguments.
333 local program_name=$1
335 # When sudo is used use real program name instead, but with an
336 # exclamation mark at the beginning (handled below).
338 if [[ $program_name == sudo* ]]; then
339 program_name=${program_name#sudo }
342 # Remove all arguments from the program name.
343 program_name=${program_name%% *}
345 # Ignore often used commands which are only running for a very short
346 # time. This prevents a "blinking" name when it's changed to "cd" for
347 # example and then some milliseconds later back to "zsh".
348 [[ $program_name == (cd*|d|ls|l|la|ll|clear|c) ]] && return
350 # Change my shortcuts so the real name of the program is displayed.
351 case $program_name in
366 # Add an exclamation mark at the beginning if running with sudo or if
367 # running zsh as root.
368 if [[ -n $program_sudo || -n $window_root ]]; then
369 program_name=!$program_name
372 # Add an at mark at the beginning if running through ssh on a
373 # different computer.
374 if [[ -n $SSH_CONNECTION ]]; then
375 program_name="@$program_name"
377 # If screen is running in SSH then display "@:hostname" as title
378 # in the term/outer screen.
379 if [[ $program_name == @screen ]]; then
380 program_name="@:${HOST//.*/}"
381 # Use "@:!hostname" for root screens.
382 elif [[ $program_name == @!screen ]]; then
383 program_name="@:!${HOST//.*/}"
387 # Set the window name to the currently running program.
388 window_title "$program_name"
390 # Tell precmd() to reset the window name when the program stops.
395 # Abort if no window name reset is necessary.
396 [[ -z $window_reset ]] && return
398 # Reset the window name to 'zsh'.
400 # If the function was called with an argument then reset the window
401 # name to '.zsh' (used by clear alias).
406 # Prepend prefixes like in window_preexec().
407 if [[ -n $window_root ]]; then
410 if [[ -n $SSH_CONNECTION ]]; then
415 # Just reset the name, so no screen reset necessary for the moment.
419 # Sets the window title. Works with screen, xterm and rxvt. (V) escapes
420 # all non-printable characters. Thanks to Mikachu in #zsh on Freenode
421 # (2010-08-07 17:09 CEST).
422 if [[ $TERM == screen* ]]; then
424 print -n "\ek${(V)1}\e\\"
426 elif [[ $TERM == xterm* || $TERM == rxvt* ]]; then
428 print -n "\e]2;${(V)1}\e\\"
431 # Fallback if another TERM is used.
435 # Add the preexec() and precmd() hooks.
436 add-zsh-hook preexec window_preexec
437 add-zsh-hook precmd window_precmd
439 # Fallback if another TERM is used, necessary to run screen (see below in
445 # COMPLETION SETTINGS
447 # Load the complist module which provides additions to completion lists
448 # (coloring, scrollable).
449 zmodload zsh/complist
450 # Use new completion system, store dumpfile in ~/.zsh/cache to prevent
451 # cluttering of ~/. $fpath must be set before calling this. Thanks to Adlai in
452 # #zsh on Freenode (2009-08-07 21:05 CEST) for reminding me of the $fpath
454 autoload -Uz compinit && compinit -d ~/.zsh/cache/zcompdump
456 # Use cache to speed up completions.
457 zstyle ':completion:*' use-cache on
458 zstyle ':completion:*' cache-path ~/.zsh/cache
460 # Complete arguments and fix spelling mistakes when possible.
461 zstyle ':completion:*' completer _complete _match _correct _approximate
463 # Make sure the list of possible completions is displayed after pressing <TAB>
465 setopt nolistambiguous
466 # Allow completions in the middle of a text, i.e. "/usr/bin/<TAB>whatever"
467 # completes like "/usr/bin/<TAB>". Useful when adding new options to commands.
468 bindkey '^I' expand-or-complete-prefix
469 # Try uppercase if the currently typed string doesn't match. This allows
470 # typing in lowercase most of the time and completion fixes the case.
471 zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}'
473 # Use ls like colors for completions.
474 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
476 # Make completion lists scrollable so "do you wish to see all n possibilities"
477 # is no longer displayed.
478 zstyle ':completion:*' list-prompt '%p'
479 # Display group name (like 'external command', 'alias', etc.) when there are
480 # multiple matches in bold.
481 zstyle ':completion:*' format ' %B%d%b:'
482 # Display different types of matches separately.
483 zstyle ':completion:*' group-name ''
485 # Don't draw trailing / in bold (new in zsh 4.3.11). Thanks to Mikachu in #zsh
486 # on Freenode for the fix (2010-12-17 13:46 CET).
487 zle_highlight=(suffix:none)
489 # Ignore completion functions.
490 zstyle ':completion:*:functions' ignored-patterns '_*'
491 # Ignore parent directory.
492 zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd
493 # Always complete one value (file name) only once in the current line. This
494 # makes it easy to complete multiple values because I can just press tab to
495 # get all possible values. Otherwise I would have to skip the first value
497 zstyle ':completion:*' ignore-line yes
498 # Except for mv and cp, because I often want to use to similar names, so I
499 # complete to the same and change it.
500 zstyle ':completion:*:(mv|cp):*' ignore-line no
501 # Don't complete ./config.* files, this makes running ./configure much
502 # simpler. Thanks to Nomexous in #zsh on Freenode (2010-03-16 01:54 CET)
503 zstyle ':completion:*:*:-command-:*' ignored-patterns './config.*'
505 # Don't complete unwanted files with Vim. Thanks to Nomexous in #zsh on
506 # Freenode (2010-06-06 04:54 CEST). See below to complete them.
507 zstyle ':completion:*:*:vim:*:all-files' ignored-patterns '*.aux' '*.log' \
510 # Provide a fallback completer which always completes files. Useful when Zsh's
511 # completion is too "smart". Thanks to Frank Terbeck <ft@bewatermyfriend.org>
512 # (http://www.zsh.org/mla/users/2009/msg01038.html).
513 zle -C complete-files complete-word _generic
514 zstyle ':completion:complete-files:*' completer _files
515 bindkey '^F' complete-files
518 # CUSTOM ALIASES AND FUNCTIONS
520 # If ^C is pressed while typing a command, add it to the history so it can be
521 # easily retrieved later and then abort like ^C normally does. This is useful
522 # when I want to abort an command to do something in between and then finish
523 # typing the command.
525 # Thanks to Vadim Zeitlin <vz-zsh@zeitlins.org> for a fix (--) so lines
526 # starting with - don't cause errors; and to Nadav Har'El
527 # <nyh@math.technion.ac.il> for a fix (-r) to handle whitespace/quotes
528 # correctly, both on the Zsh mailing list.
530 # Store the current buffer in the history.
531 zle && print -s -r -- $BUFFER
533 # Return the default exit code so Zsh aborts the current command.
537 # Load aliases and similar functions also used by other shells.
538 if [[ -f ~/.shell/aliases ]]; then
542 # Make sure aliases are expanded when using sudo.
545 # Global aliases for often used commands in the command line.
547 alias -g L='E | less'
548 alias -g D='E | colordiff L'
555 # Make going up directories simple.
557 alias -g ....='../../..'
558 alias -g .....='../../../..'
560 # If the window naming feature is used (see above) then use ".zsh" (leading
561 # dot) as title name after running clear so it's clear to me that the window
562 # is empty. I open so much windows that I don't know in which I have something
563 # important. This helps me to remember which windows are empty (I run clear
564 # after I finished my work in a window).
565 if [[ -n $window_reset ]]; then
566 alias clear='clear; window_reset=yes; window_precmd reset'
569 # Display all branches (except stash) in gitk but only 200 commits as this is
570 # much faster. Also put in the background and disown. Thanks to sitaram in
571 # #git on Freenode (2009-04-20 15:51).
575 $(git rev-parse --symbolic-full-name --remotes --branches) \
579 # Same for tig (except the disown part as it's no GUI program).
583 $(git rev-parse --symbolic-full-name --remotes --branches) \
587 # Pipe output through less.
589 command tree -C "$@" | less
592 # Automatically disown.
599 # OS SPECIFIC SETTINGS
601 if [[ $OSTYPE == linux* ]]; then
602 # Settings when creating Debian packages.
603 DEBEMAIL=simon@ruderich.org
605 DEBFULLNAME='Simon Ruderich'
610 # LOAD ADDITIONAL CONFIGURATION FILES
612 source_config ~/.zsh/rc.local
617 # If not already in screen reattach to a running session or create a new one.
618 # This also starts screen on a remote server when connecting through ssh.
619 if [[ $TERM != dumb && $TERM != linux && -z $STY ]]; then
620 # Get running detached sessions.
621 session=$(screen -list | grep 'Detached' | awk '{ print $1; exit }')
623 # As we exec later we have to set the title here.
624 window_preexec "screen"
626 # Create a new session if none is running.
627 if [[ -z $session ]]; then
629 # Reattach to a running session.
631 exec screen -r $session
635 # Colorize stderr in red. Very useful when looking for errors. Thanks to
636 # http://gentoo-wiki.com/wiki/Zsh for the basic script and Mikachu in #zsh on
637 # Freenode (2010-03-07 04:03 CET) for some improvements (-r, printf). It's not
638 # yet perfect and doesn't work with su and git for example, but it can handle
639 # most interactive output quite well (even with no trailing new line) and in
640 # cases it doesn't work, the E alias can be used as workaround.
642 # Moved in the "run commands" section to prevent one unnecessary zsh process
643 # when starting screen (see above).
644 exec 2>>(while read -r -k -u 0 line; do
645 printf '\e[91m%s\e[0m' "$line";
649 # Run reminder and redisplay it every four hours (if it's available).
652 which rem > /dev/null && [ -f ~/.reminders ] && rem -h
656 source_debug ". ~/.zsh/rc (done)"