]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/rc
zsh/rc: Display @:hostname when running screen on remote host.
[config/dotfiles.git] / zsh / rc
1 # Zsh configuration file.
2
3
4 source_debug "sourcing ~/.zsh/rc"
5
6 # MISCELLANEOUS SETTINGS
7
8 # Use Vi(m) style key bindings.
9 bindkey -v
10
11 # Be paranoid, new files are readable/writable by me only.
12 umask 077
13
14 # Disable beeps.
15 setopt nobeep
16
17 # Prevent overwriting existing files with '> filename', use '>| filename'
18 # (or >!) instead.
19 setopt noclobber
20
21 # Entering the name of a directory (if it's not a command) will automatically
22 # cd to that directory.
23 setopt autocd
24
25 # When entering a nonexistent command name automatically try to find a similar
26 # one.
27 setopt correct
28
29 # Enable zsh's extended glob abilities.
30 setopt extendedglob
31
32 # Don't exit if <C-d> is pressed.
33 setopt ignoreeof
34
35
36 # FUNCTION SETTINGS
37
38 # Make sure every entry in $fpath is unique.
39 typeset -U fpath
40 # ~/.zsh/functions/completion is a symbolic link to the Completion directory
41 # of a Zsh CVS checkout. Use it to get the newest completions if available.
42 if [[ -d ~/.zsh/functions/completion ]]; then
43     fpath=(~/.zsh/functions/completion/*/*(/) $fpath)
44 fi
45 # Set correct fpath to allow loading my functions (including completion
46 # functions).
47 fpath=(~/.zsh/functions $fpath)
48 # Autoload my functions (except completion functions and hidden files). Thanks
49 # to caphuso from the Zsh example files for this idea.
50 if [[ -d ~/.zsh/functions ]]; then
51     autoload ${fpath[1]}/^_*(^/:t)
52 fi
53
54 # Simulate hooks using _functions arrays for Zsh versions older than 4.3.4. At
55 # the moment only precmd(), preexec() and chpwd() are simulated.
56 #
57 # At least 4.3.4 (not sure about later versions) has an error in add-zsh-hook
58 # so the compatibility version is used there too.
59 if [[ $ZSH_VERSION != (4.3.<5->|4.<4->*|<5->*) ]]; then
60     # Provide add-zsh-hook which was added in 4.3.4.
61     fpath=(~/.zsh/functions/compatibility $fpath)
62
63     # Run all functions defined in the ${precmd,preexec,chpwd}_functions
64     # arrays.
65     function precmd() {
66         for function in $precmd_functions; do
67             $function $@
68         done
69     }
70     function preexec() {
71         for function in $preexec_functions; do
72             $function $@
73         done
74     }
75     function chpwd() {
76         for function in $chpwd_functions; do
77             $function $@
78         done
79     }
80 fi
81
82 # Autoload add-zsh-hook to add/remove zsh hook functions easily.
83 autoload -Uz add-zsh-hook
84
85 # Load zmv (zsh move) which is powerful to rename files.
86 autoload zmv
87
88
89 # HISTORY SETTINGS
90
91 # Use history and store it in ~/.zsh/history.
92 HISTSIZE=50000
93 SAVEHIST=50000
94 HISTFILE=~/.zsh/history
95 # Append to the history file instead of overwriting it and do it immediately
96 # when a command is executed.
97 setopt appendhistory
98 setopt incappendhistory
99 # If the same command is run multiple times store it only once in the history.
100 setopt histignoredups
101 # Vim like completions of previous executed commands (also enter Vi-mode). If
102 # called at the beginning it just recalls old commands (like cursor up), if
103 # called after typing something, only lines starting with the typed are
104 # returned. Very useful to get old commands quickly. Thanks to Mikachu in #zsh
105 # on Freenode (2010-01-17 12:47) for the information how to a use function
106 # with bindkey.
107 zle -N my-vi-history-beginning-search-backward
108 my-vi-history-beginning-search-backward() {
109     local not_at_beginning_of_line
110     if [[ $CURSOR -ne 0 ]]; then
111         not_at_beginning_of_line=yes
112     fi
113
114     zle history-beginning-search-backward
115
116     # Start Vi-mode and stay at the same position (Vi-mode moves one left,
117     # this counters it).
118     zle vi-cmd-mode
119     if [[ -n $not_at_beginning_of_line ]]; then
120         zle vi-forward-char
121     fi
122 }
123 bindkey "^P" my-vi-history-beginning-search-backward
124 bindkey -a "^P" history-beginning-search-backward # binding for Vi-mode
125 # Here only Vi-mode is necessary as ^P enters Vi-mode and ^N only makes sense
126 # after calling ^P.
127 bindkey -a "^N" history-beginning-search-forward
128
129
130 # PROMPT SETTINGS
131
132 # Use colorized output, necessary for prompts and completions.
133 autoload -U colors && colors
134
135 # Some shortcuts for colors.
136 local red="%{${fg[red]}%}"
137 local blue="%{${fg[blue]}%}"
138 local green="%{${fg[green]}%}"
139 local yellow="%{${fg[yellow]}%}"
140 local default="%{${fg[default]}%}"
141
142 # Set the default prompt. The current host and working directory is displayed,
143 # the exit code of the last command if it wasn't 0, the number of running jobs
144 # if not 0.
145 #
146 # The prompt is in green and blue to make easily detectable, the error exit
147 # code in red and bold and the job count in yellow.
148 PROMPT="$green%B%m%b$default:$blue%B%~%b$default \
149 %(1j.$yellow%j$default.)%# \
150 %(?..($red%B%?%b$default%) )"
151
152 # vcs_info was added in 4.3.9 but it works in earlier versions too. So load it
153 # if the necessary files are available in ~/.zsh/functions/vcs_info (often a
154 # symbolic link to current checkout of Zsh's sources).
155 if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) ||
156       -d ~/.zsh/functions/vcs_info ]]; then
157     # Update fpath to allow loading the vcs_info functions.
158     if [[ -d ~/.zsh/functions/vcs_info ]]; then
159        fpath=(~/.zsh/functions/vcs_info/
160               ~/.zsh/functions/vcs_info/Backends
161               $fpath)
162     fi
163
164     # Allow substitutions and expansions in the prompt, necessary for
165     # vcs_info.
166     setopt promptsubst
167     # Load vcs_info to display information about version control repositories.
168     autoload -Uz vcs_info
169     # Only look for git and mercurial repositories; the only I use.
170     zstyle ':vcs_info:*' enable git hg
171     # Check the repository for changes so they can be used in %u/%c (see
172     # below). This comes with a speed penalty for bigger repositories.
173     zstyle ':vcs_info:*' check-for-changes true
174
175     # Set style of vcs_info display. The current branch (green) and VCS (blue)
176     # is displayed. If there is an special action going on (merge, rebase)
177     # it's also displayed (red). Also display if there are unstaged or staged
178     # (%u/%c) changes.
179     if [[ $ZSH_VERSION == (4.3.<11->|4.<4->*|<5->*) ||
180           -d ~/.zsh/functions/vcs_info ]]; then
181         zstyle ':vcs_info:*' formats \
182             "($green%b%u%c$default:$blue%s$default)"
183         zstyle ':vcs_info:*' actionformats \
184             "($green%b%u%c$default/$red%a$default:$blue%s$default)"
185     else
186         # In older versions %u and %c are not defined yet and are not
187         # correctly expanded.
188         zstyle ':vcs_info:*' formats \
189             "($green%b$default:$blue%s$default)"
190         zstyle ':vcs_info:*' actionformats \
191             "($green%b$default/$red%a$default:$blue%s$default)"
192     fi
193     # Set style for formats/actionformats when unstaged (%u) and staged (%c)
194     # changes are detected in the repository; check-for-changes must be set to
195     # true for this to work. Thanks to Bart Trojanowski
196     # (http://jukie.net/~bart/blog/pimping-out-zsh-prompt) for the idea
197     # (2010-03-11 00:20).
198     zstyle ':vcs_info:*' unstagedstr '¹'
199     zstyle ':vcs_info:*' stagedstr   '²'
200
201     # Call vcs_info as precmd before every prompt.
202     prompt_precmd() {
203         vcs_info
204     }
205     add-zsh-hook precmd prompt_precmd
206
207     # Display the VCS information in the right prompt.
208     if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) ]]; then
209         RPROMPT='${vcs_info_msg_0_}'
210     # There is a bug in Zsh below 4.3.9 which displays a wrong symbol when
211     # ${vcs_info_msg_0_} is empty. Provide a workaround for those versions,
212     # thanks to Frank Terbeck <ft@bewatermyfriend.org> for it.
213     else
214         RPROMPT='${vcs_info_msg_0_:- }'
215     fi
216 fi
217
218 unset red blue green yellow default
219
220 # When screen, xterm or rxvt is used set the name of the window to the
221 # currently running program.
222 #
223 # When a program is started preexec() sets the window's name to it; when it
224 # stops precmd() resets the window's name to 'zsh'.
225 #
226 # It works with screen, xterm and rxvt.
227 #
228 # If a command is run with sudo or if the shell is running as root then a ! is
229 # added at the beginning of the command to make this clear. If a command is
230 # running on a different computer with ssh a @ is added at the beginning. If
231 # screen is running on the remote machine instead of @screen @:hostname
232 # (hostname replaced by the machine's hostname) is displayed. This only works
233 # if the .zshrc on the server also uses this command.
234 if [[ $TERM == screen* || $TERM == xterm* || $TERM == rxvt* ]]; then
235     # Is set to a non empty value to reset the window name in the next
236     # precmd() call.
237     window_reset=yes
238     # Is set to a non empty value when the shell is running as root.
239     if [[ $(id -u) -eq 0 ]]; then
240         window_root=yes
241     fi
242
243     window_preexec() {
244         # Get the program name with its arguments.
245         local program_name=$1
246
247         # When sudo is used use real program name instead, but with an
248         # exclamation mark at the beginning (handled below).
249         local program_sudo=
250         if [[ $program_name == sudo* ]]; then
251             program_name=${program_name#sudo }
252             program_sudo=yes
253         fi
254         # Remove all arguments from the program name.
255         program_name=${program_name%% *}
256
257         # Ignore often used commands which are only running for a very short
258         # time. This prevents a "blinking" name when it's changed to "cd" for
259         # example and then some milliseconds later back to "zsh".
260         [[ $program_name == (cd*|ls|la|ll|clear|c) ]] && return
261
262         # Change my shortcuts so the real name of the program is displayed.
263         case $program_name in
264             e)
265                 program_name=elinks
266                 ;;
267             g)
268                 program_name=git
269                 ;;
270             m)
271                 program_name=mutt
272                 ;;
273             v|vi)
274                 program_name=vim
275                 ;;
276         esac
277
278         # Add an exclamation mark at the beginning if running with sudo or if
279         # running zsh as root.
280         if [[ -n $program_sudo || -n $window_root ]]; then
281             program_name=!$program_name
282         fi
283
284         # Add an at mark at the beginning if running through ssh on a
285         # different computer.
286         if [[ -n $SSH_CONNECTION ]]; then
287             program_name="@$program_name"
288
289             # If screen is running in SSH then display "@:hostname" as title
290             # in the term/outer screen.
291             if [[ $program_name == @screen ]]; then
292                 program_name="@:${$(hostname)//.*/}"
293             fi
294         fi
295
296         # Set the window name to the currently running program.
297         window_title "$program_name"
298
299         # Tell precmd() to reset the window name when the program stops.
300         window_reset=yes
301     }
302
303     window_precmd() {
304         # Abort if no window name reset is necessary.
305         [[ -z $window_reset ]] && return
306
307         # Reset the window name to 'zsh'.
308         local name="zsh"
309         # If the function was called with an argument then reset the window
310         # name to '.zsh' (used by clear alias).
311         if [[ -n $1 ]]; then
312             name=".zsh"
313         fi
314
315         # Prepend prefixes like in window_preexec().
316         if [[ -n $SSH_CONNECTION ]]; then
317             window_title "@$name"
318         elif [[ -n $window_root ]]; then
319             window_title "!$name"
320         else
321             window_title $name
322         fi
323
324         # Just reset the name, so no screen reset necessary for the moment.
325         window_reset=
326     }
327
328     # Sets the window title. Works with screen, xterm and rxvt.
329     window_title() {
330         if [[ $TERM == screen* ]]; then
331             print -n "\ek$1\e\\"
332
333         elif [[ $TERM == xterm* || $TERM == rxvt* ]]; then
334             print -n "\e]2;$1\e\\"
335         fi
336     }
337
338     # Add the preexec() and precmd() hooks.
339     add-zsh-hook preexec window_preexec
340     add-zsh-hook precmd window_precmd
341 fi
342
343
344 # COMPLETION SETTINGS
345
346 # Load the complist module which provides additions to completion lists
347 # (coloring, scrollable).
348 zmodload zsh/complist
349 # Use new completion system, store dumpfile in ~/.zsh/cache to prevent
350 # cluttering of ~/. $fpath must be set before calling this. Thanks to Adlai in
351 # #zsh on Freenode (2009-08-07 21:05) for reminding me of the $fpath problem.
352 autoload -U compinit && compinit -d ~/.zsh/cache/zcompdump
353
354 # Use cache to speed up completions.
355 zstyle ':completion:*' use-cache on
356 zstyle ':completion:*' cache-path ~/.zsh/cache
357
358 # Complete arguments and fix spelling mistakes when possible.
359 zstyle ':completion:*' completer _complete _match _correct _approximate
360
361 # Make sure the list of possible completions is displayed after pressing <TAB>
362 # the first time.
363 setopt nolistambiguous
364 # Allow completions in the middle of a text, i.e. "/usr/bin/<TAB>whatever"
365 # completes like "/usr/bin/<TAB>". Useful when adding new options to commands.
366 bindkey "^I" expand-or-complete-prefix
367 # Try uppercase if the currently typed string doesn't match. This allows
368 # typing in lowercase most of the time and completion fixes the case.
369 zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}'
370
371 # Use ls like colors for completions.
372 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
373
374 # Make completion lists scrollable so "do you wish to see all n possibilities"
375 # is no longer displayed.
376 zstyle ':completion:*' list-prompt '%p'
377 # Display group name (like 'external command', 'alias', etc.) when there are
378 # multiple matches in bold.
379 zstyle ':completion:*' format '    %B%d%b:'
380 # Display different types of matches separately.
381 zstyle ':completion:*' group-name ''
382
383 # Ignore completion functions.
384 zstyle ':completion:*:functions' ignored-patterns '_*'
385 # Ignore parent directory.
386 zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd
387 # When unsetting variables make sure every variable name is only suggested
388 # once.
389 zstyle ':completion:*:unset:*' ignore-line yes
390 # When working with Mercurial and Git don't complete the same file multiple
391 # times. Very useful when completing file names.
392 zstyle ':completion:*:(hg|git)*:*' ignore-line yes
393
394
395 # CUSTOM ALIASES AND FUNCTIONS
396
397 # If ^C is pressed while typing a command, add it to the history so it can be
398 # easily retrieved later and then abort like ^C normally does. This is useful
399 # when I want to abort an command to do something in between and then finish
400 # typing the command.
401 #
402 # Thanks to Vadim Zeitlin <vz-zsh@zeitlins.org> for a fix (--) so lines
403 # starting with - don't cause errors.
404 TRAPINT() {
405     # Store the current buffer in the history.
406     zle && print -s -- $BUFFER
407
408     # Return the default exit code so Zsh aborts the current command.
409     return $1
410 }
411
412 # Colorize stderr. Very useful when looking for errors. Thanks to
413 # http://gentoo-wiki.com/wiki/Zsh for the basic script and Mikachu in #zsh on
414 # Freenode (2010-03-07 04:03) for some improvements (-r, printf). It's not yet
415 # perfect and doesn't work with some interactive stderr output, but in those
416 # cases the E alias can be used as workaround.
417 exec 2>>(while read -r line; do
418     printf '\e[91m%s\e[0m\n' "$line"
419     print -n $'\0';
420 done &)
421
422 # Load aliases and similar functions also used by other shells.
423 if [[ -f ~/.shell/aliases ]]; then
424     . ~/.shell/aliases
425 fi
426
427 # Make sure aliases are expanded when using sudo.
428 alias sudo='sudo '
429
430 # Global aliases for often used commands in the command line.
431 alias -g E='2>&1'
432 alias -g L='E | less'
433 alias -g D='E | colordiff L'
434 alias -g G='| grep'
435 alias -g S='| sort'
436 alias -g U='| uniq'
437 alias -g H='| head'
438 alias -g T='| tail'
439
440 # Make going up directories simple.
441 alias -g ...='../..'
442 alias -g ....='../../..'
443 alias -g .....='../../../..'
444
445 # If the window naming feature is used (see above) then use ".zsh" (leading
446 # dot) as title name after running clear so it's clear to me that the window
447 # is empty. I open so much windows that I don't know in which I have something
448 # important. This helps me to remember which windows are empty (I run clear
449 # after I finished my work in a window).
450 if [[ -n $window_reset ]]; then
451     alias clear='clear; window_reset=yes; window_precmd reset'
452 fi
453
454 # Display all branches (except stash) in gitk but only 200 commits as this is
455 # much faster. Also put in the background and disown. Thanks to sitaram in
456 # #git on Freenode (2009-04-20 15:51).
457 gitk() {
458     command gitk \
459         --max-count=200 \
460         $(git rev-parse --symbolic-full-name --remotes --branches) \
461         $@ &
462     disown %command
463 }
464 # Same for tig (except the disown part as it's no GUI program).
465 tig() {
466     command tig \
467         --max-count=200 \
468         $(git rev-parse --symbolic-full-name --remotes --branches) \
469         $@
470 }
471
472
473 # OS SPECIFIC SETTINGS
474
475 if [[ $(uname) == Linux ]]; then
476     # Settings when creating Debian packages.
477     DEBEMAIL=simon@ruderich.org
478     export DEBEMAIL
479     DEBFULLNAME="Simon Ruderich"
480     export DEBFULLNAME
481
482 elif [[ $(uname) == Darwin ]]; then # Mac OS X
483     # Store the current clipboard in CLIPBOARD before every command so it can
484     # be used in commands.
485     os_darwin_preexec() {
486         export CLIPBOARD="$(pbpaste)"
487     }
488     # Add the function as preexec hook.
489     add-zsh-hook preexec os_darwin_preexec
490
491     # Initialize CLIPBOARD so it's available for completion directly after
492     # startup.
493     CLIPBOARD=""
494     export CLIPBOARD
495
496     # Fetch current URL in clipboard with wget.
497     alias wnc='wget --no-proxy $CLIPBOARD'
498 fi
499
500
501 # LOAD ADDITIONAL CONFIGURATION FILES
502
503 # Load rc file for current hostname (first part before a dot) or rc.local.
504 source_config ~/.zsh host rc ${$(hostname)//.*/}
505
506
507 # RUN COMMANDS
508
509 # If not already in screen reattach to a running session or create a new one.
510 #
511 # screen* is necessary as `screen` uses screen.linux for example for a linux
512 # console which would otherwise cause an infinite loop.
513 if [[ $TERM != screen* && $TERM != 'dumb' ]]; then
514     # Get running detached sessions.
515     session=$(screen -list | grep 'Detached' | awk '{ print $1; exit }')
516     # Create a new session if none is running.
517     if [[ -z $session ]]; then
518         screen
519     # Reattach to a running session.
520     else
521         screen -r $session
522     fi
523 fi
524
525
526 source_debug "finished sourcing ~/.zsh/rc"
527
528 # vim: ft=zsh