]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/rc
Use colorized output with normal ls when GNU ls is not available.
[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'.
25 setopt noclobber
26
27 # Entering the name of a directory (if it's not a command) will automatically
28 # cd to that directory.
29 setopt autocd
30
31 # When entering a nonexistent command name automatically try to find a similar
32 # one.
33 setopt correct
34
35 # Use colorized output, necessary for prompts and completions.
36 autoload -U colors && colors
37
38 # Set the default prompt. The current host and working directory is displayed,
39 # the exit code of the last command if it wasn't 0, the number of running jobs
40 # if not 0 and a + if this shell is running inside another shell.
41 # The prompt is in green and blue to make easily detectable, the error exit
42 # code in red and bold and the job count in yellow.
43 PROMPT="%{${fg[green]}%}%B%m%b%{${fg[default]}%}:\
44 %{${fg[blue]}%}%B%~%b%{${fg[default]}%} \
45 %(1j.%{${fg[yellow]}%}%j%{${fg[default]}%}.)%(2L.+.)%# \
46 %(?..(%{${fg[red]}%}%B%?%b%{${fg[default]}%}%) )"
47
48 # Use new completion system.
49 autoload -U compinit && compinit
50 # Load the complist module which provides additions to completion lists
51 # (coloring, scrollable).
52 zmodload zsh/complist
53 # Make sure the list of possible completions is displayed after pressing <TAB>
54 # the first time.
55 setopt nolistambiguous
56 # Allow completions in the middle of a text, i.e. "/usr/bin/<TAB>whatever"
57 # completes like "/usr/bin/<TAB>". Useful when adding new options to commands.
58 bindkey "^I" expand-or-complete-prefix
59 # Use cache to speed up completions.
60 zstyle ':completion:*' use-cache on
61 zstyle ':completion:*' cache-path ~/.zsh/cache
62 # Ignore case if currently typed string doesn't match.
63 zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}'
64 # Ignore completion functions.
65 zstyle ':completion:*:functions' ignored-patterns '_*'
66 # Ignore parent directory.
67 zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd
68 # Use ls like colors for completions.
69 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
70 # Make completion lists scrollable so "do you wish to see all n possibilities"
71 # is no longer displayed.
72 zstyle ':completion:*' list-prompt '%p'
73
74 # Enable zsh's extended glob abilities.
75 setopt extendedglob
76
77 # Don't exit if <C-d> is pressed.
78 setopt ignoreeof
79
80 # If ^C is pressed while typing a command, add it to the history so it can be
81 # easily retrieved later and then abort like ^C normally does. This is useful
82 # when I want to abort an command to do something in between and then finish
83 # typing the command.
84 TRAPINT() {
85     # Store the current buffer in the history.
86     zle && print -s $BUFFER
87
88     # Return the default exit code so zsh aborts the current command.
89     return $1
90 }
91
92 # Simplify calls to less, automatically redirects all output.
93 alias -g L='2>&1 | less'
94 # Simplify calls to colordiff, output is also piped through less.
95 alias -g D='2>&1 | colordiff L'
96 # Simplify calls to grep.
97 alias -g G='| grep'
98
99 # Improved ls which displays the files in columns (-C), visualises directories,
100 # links and other special files (-F) and pages everything through less (L).
101 #
102 # If available use GNU ls with colorized output. If it isn't available use
103 # normal ls which needs CLICOLOR_FORCE so it displays colors when used with a
104 # pager.
105 ls --color &> /dev/null
106 if [[ $? -eq 0 ]]; then
107     alias ls='ls --color'
108 else
109     alias ls='CLICOLOR_FORCE=1 ls -G'
110 fi
111 # Main ls function.
112 function ls() {
113     command ls -C -F $* L
114 }
115 # Helper function to list all files.
116 function la() {
117     ls -a $*
118 }
119 # Helper function to list all files in list format with access rights, etc.
120 function ll() {
121     la -l $*
122 }
123
124
125 # Load rc file for current hostname (first part before a dot) or rc.local.
126 source_config ~/.zsh "" rc ${$(hostname)//.*/}