712a93ae558ac9cbefd3f2b1fe6d717b341f88d6
[grml-etc-core.git] / etc / skel / .zshrc
1 # Filename:      /etc/skel/.zshrc
2 # Purpose:       config file for zsh (z shell)
3 # Authors:       (c) grml-team (grml.org)
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2 or any later version.
6 ################################################################################
7 # Nowadays, grml's zsh setup lives in only *one* zshrc file.
8 # That is the global one: /etc/zsh/zshrc (from grml-etc-core).
9 # It is best to leave *this* file untouched and do personal changes to
10 # your zsh setup via ${HOME}/.zshrc.local which is loaded at the end of
11 # the global zshrc.
12 #
13 # That way, we enable people on other operating systems to use our
14 # setup, too, just by copying our global zshrc to their ${HOME}/.zshrc.
15 # Adjustments would still go to the .zshrc.local file.
16 ################################################################################
17
18 ## Inform users about upgrade path for grml's old zshrc layout, assuming that:
19 ## /etc/skel/.zshrc was installed as ~/.zshrc,
20 ## /etc/zsh/zshrc was installed as ~/.zshrc.global and
21 ## ~/.zshrc.local does not exist yet.
22 if [ -r ~/.zshrc -a -r ~/.zshrc.global -a ! -r ~/.zshrc.local ] ; then
23     printf '-!-\n'
24     printf '-!- Looks like you are using the old zshrc layout of grml.\n'
25     printf '-!- Please read the notes in the grml-zsh-refcard, being'
26     printf '-!- available at: http://grml.org/zsh/\n'
27     printf '-!-\n'
28     printf '-!- If you just want to get rid of this warning message execute:\n'
29     printf '-!-        touch ~/.zshrc.local\n'
30     printf '-!-\n'
31 fi
32
33 ## Settings for umask
34 #if (( EUID == 0 )); then
35 #    umask 002
36 #else
37 #    umask 022
38 #fi
39
40 ## Now, we'll give a few examples of what you might want to use in your
41 ## .zshrc.local file (just copy'n'paste and uncomment it there):
42
43 ## ZLE tweaks ##
44
45 ## use the vi navigation keys (hjkl) besides cursor keys in menu completion
46 #bindkey -M menuselect 'h' vi-backward-char        # left
47 #bindkey -M menuselect 'k' vi-up-line-or-history   # up
48 #bindkey -M menuselect 'l' vi-forward-char         # right
49 #bindkey -M menuselect 'j' vi-down-line-or-history # bottom
50
51 ## set command prediction from history, see 'man 1 zshcontrib'
52 #is4 && zrcautoload predict-on && \
53 #zle -N predict-on         && \
54 #zle -N predict-off        && \
55 #bindkey "^X^Z" predict-on && \
56 #bindkey "^Z" predict-off
57
58 ## press ctrl-q to quote line:
59 #mquote () {
60 #      zle beginning-of-line
61 #      zle forward-word
62 #      # RBUFFER="'$RBUFFER'"
63 #      RBUFFER=${(q)RBUFFER}
64 #      zle end-of-line
65 #}
66 #zle -N mquote && bindkey '^q' mquote
67
68 ## define word separators (for stuff like backward-word, forward-word, backward-kill-word,..)
69 #WORDCHARS='*?_-.[]~=/&;!#$%^(){}<>' # the default
70 #WORDCHARS=.
71 #WORDCHARS='*?_[]~=&;!#$%^(){}'
72 #WORDCHARS='${WORDCHARS:s@/@}'
73
74 # just type '...' to get '../..'
75 #rationalise-dot() {
76 #local MATCH
77 #if [[ $LBUFFER =~ '(^|/| |     |'$'\n''|\||;|&)\.\.$' ]]; then
78 #  LBUFFER+=/
79 #  zle self-insert
80 #  zle self-insert
81 #else
82 #  zle self-insert
83 #fi
84 #}
85 #zle -N rationalise-dot
86 #bindkey . rationalise-dot
87 ## without this, typing a . aborts incremental history search
88 #bindkey -M isearch . self-insert
89
90 #bindkey '\eq' push-line-or-edit
91
92 ## some popular options ##
93
94 ## add `|' to output redirections in the history
95 #setopt histallowclobber
96
97 ## warning if file exists ('cat /dev/null > ~/.zshrc')
98 #setopt NO_clobber
99
100 ## don't warn me about bg processes when exiting
101 #setopt nocheckjobs
102
103 ## alert me if something failed
104 #setopt printexitvalue
105
106 ## with spelling correction, assume dvorak kb
107 #setopt dvorak
108
109 ## Allow comments even in interactive shells
110 #setopt interactivecomments
111
112
113 ## compsys related snippets ##
114
115 ## changed completer settings
116 #zstyle ':completion:*' completer _complete _correct _approximate
117 #zstyle ':completion:*' expand prefix suffix
118
119 ## another different completer setting: expand shell aliases
120 #zstyle ':completion:*' completer _expand_alias _complete _approximate
121
122 ## to have more convenient account completion, specify your logins:
123 #my_accounts=(
124 # {grml,grml1}@foo.invalid
125 # grml-devel@bar.invalid
126 #)
127 #other_accounts=(
128 # {fred,root}@foo.invalid
129 # vera@bar.invalid
130 #)
131 #zstyle ':completion:*:my-accounts' users-hosts $my_accounts
132 #zstyle ':completion:*:other-accounts' users-hosts $other_accounts
133
134 ## telnet on non-default ports? ...well:
135 ## specify specific port/service settings:
136 #telnet_users_hosts_ports=(
137 #  user1@host1:
138 #  user2@host2:
139 #  @mail-server:{smtp,pop3}
140 #  @news-server:nntp
141 #  @proxy-server:8000
142 #)
143 #zstyle ':completion:*:*:telnet:*' users-hosts-ports $telnet_users_hosts_ports
144
145 ## the default grml setup provides '..' as a completion. it does not provide
146 ## '.' though. If you want that too, use the following line:
147 #zstyle ':completion:*' special-dirs true
148
149 ## aliases ##
150
151 ## translate
152 #alias u='translate -i'
153
154 ## ignore ~/.ssh/known_hosts entries
155 #alias insecssh='ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null" -o "PreferredAuthentications=keyboard-interactive"'
156
157
158 ## global aliases (for those who like them) ##
159
160 #alias -g '...'='../..'
161 #alias -g '....'='../../..'
162 #alias -g BG='& exit'
163 #alias -g C='|wc -l'
164 #alias -g G='|grep'
165 #alias -g H='|head'
166 #alias -g Hl=' --help |& less -r'
167 #alias -g K='|keep'
168 #alias -g L='|less'
169 #alias -g LL='|& less -r'
170 #alias -g M='|most'
171 #alias -g N='&>/dev/null'
172 #alias -g R='| tr A-z N-za-m'
173 #alias -g SL='| sort | less'
174 #alias -g S='| sort'
175 #alias -g T='|tail'
176 #alias -g V='| vim -'
177
178 ## instead of global aliase it might be better to use grmls $abk assoc array, whose contents are expanded after pressing ,.
179 #$abk[SnL]="| sort -n | less"
180
181 ## get top 10 shell commands:
182 #alias top10='print -l ${(o)history%% *} | uniq -c | sort -nr | head -n 10'
183
184 ## Execute \kbd{./configure}
185 #alias CO="./configure"
186
187 ## Execute \kbd{./configure --help}
188 #alias CH="./configure --help"
189
190 ## miscellaneous code ##
191
192 ## Use a default width of 80 for manpages for more convenient reading
193 #export MANWIDTH=${MANWIDTH:-80}
194
195 ## Set a search path for the cd builtin
196 #cdpath=(.. ~)
197
198 ## variation of our manzsh() function; pick you poison:
199 #manzsh()  { /usr/bin/man zshall |  most +/"$1" ; }
200
201 ## Switching shell safely and efficiently? http://www.zsh.org/mla/workers/2001/msg02410.html
202 #bash() {
203 #    NO_SWITCH="yes" command bash "$@"
204 #}
205 #restart () {
206 #    exec $SHELL $SHELL_ARGS "$@"
207 #}
208
209 ## Handy functions for use with the (e::) globbing qualifier (like nt)
210 #contains() { grep -q "$*" $REPLY }
211 #sameas() { diff -q "$*" $REPLY &>/dev/null }
212 #ot () { [[ $REPLY -ot ${~1} ]] }
213
214 ## get_ic() - queries imap servers for capabilities; real simple. no imaps
215 #ic_get() {
216 #    emulate -L zsh
217 #    local port
218 #    if [[ ! -z $1 ]] ; then
219 #        port=${2:-143}
220 #        print "querying imap server on $1:${port}...\n";
221 #        print "a1 capability\na2 logout\n" | nc $1 ${port}
222 #    else
223 #        print "usage:\n  $0 <imap-server> [port]"
224 #    fi
225 #}
226
227 ## List all occurrences of programm in current PATH
228 #plap() {
229 #    emulate -L zsh
230 #    if [[ $# = 0 ]] ; then
231 #        echo "Usage:    $0 program"
232 #        echo "Example:  $0 zsh"
233 #        echo "Lists all occurrences of program in the current PATH."
234 #    else
235 #        ls -l ${^path}/*$1*(*N)
236 #    fi
237 #}
238
239 ## Find out which libs define a symbol
240 #lcheck() {
241 #    if [[ -n "$1" ]] ; then
242 #        nm -go /usr/lib/lib*.a 2>/dev/null | grep ":[[:xdigit:]]\{8\} . .*$1"
243 #    else
244 #        echo "Usage: lcheck <function>" >&2
245 #    fi
246 #}
247
248 ## Download a file and display it locally
249 #uopen() {
250 #    emulate -L zsh
251 #    if ! [[ -n "$1" ]] ; then
252 #        print "Usage: uopen \$URL/\$file">&2
253 #        return 1
254 #    else
255 #        FILE=$1
256 #        MIME=$(curl --head $FILE | \
257 #               grep Content-Type | \
258 #               cut -d ' ' -f 2 | \
259 #               cut -d\; -f 1)
260 #        MIME=${MIME%$'\r'}
261 #        curl $FILE | see ${MIME}:-
262 #    fi
263 #}
264
265 ## Memory overview
266 #memusage() {
267 #    ps aux | awk '{if (NR > 1) print $5;
268 #                   if (NR > 2) print "+"}
269 #                   END { print "p" }' | dc
270 #}
271
272 ## print hex value of a number
273 #hex() {
274 #    emulate -L zsh
275 #    if [[ -n "$1" ]]; then
276 #        printf "%x\n" $1
277 #    else
278 #        print 'Usage: hex <number-to-convert>'
279 #        return 1
280 #    fi
281 #}
282
283 ## log out? set timeout in seconds...
284 ## ...and do not log out in some specific terminals:
285 #if [[ "${TERM}" == ([Exa]term*|rxvt|dtterm|screen*) ]] ; then
286 #    unset TMOUT
287 #else
288 #    TMOUT=1800
289 #fi
290
291 ## associate types and extensions (be aware with perl scripts and anwanted behaviour!)
292 #check_com zsh-mime-setup || { autoload zsh-mime-setup && zsh-mime-setup }
293 #alias -s pl='perl -S'
294
295 ## ctrl-s will no longer freeze the terminal.
296 #stty erase "^?"
297
298 ## you want to automatically use a bigger font on big terminals?
299 #if [[ "$TERM" == "xterm" ]] && [[ "$LINES" -ge 50 ]] && [[ "$COLUMNS" -ge 100 ]] && [[ -z "$SSH_CONNECTION" ]] ; then
300 #    large
301 #fi
302
303 ## Some quick Perl-hacks aka /useful/ oneliner
304 #bew() { perl -le 'print unpack "B*","'$1'"' }
305 #web() { perl -le 'print pack "B*","'$1'"' }
306 #hew() { perl -le 'print unpack "H*","'$1'"' }
307 #weh() { perl -le 'print pack "H*","'$1'"' }
308 #pversion()    { perl -M$1 -le "print $1->VERSION" } # i. e."pversion LWP -> 5.79"
309 #getlinks ()   { perl -ne 'while ( m/"((www|ftp|http):\/\/.*?)"/gc ) { print $1, "\n"; }' $* }
310 #gethrefs ()   { perl -ne 'while ( m/href="([^"]*)"/gc ) { print $1, "\n"; }' $* }
311 #getanames ()  { perl -ne 'while ( m/a name="([^"]*)"/gc ) { print $1, "\n"; }' $* }
312 #getforms ()   { perl -ne 'while ( m:(\</?(input|form|select|option).*?\>):gic ) { print $1, "\n"; }' $* }
313 #getstrings () { perl -ne 'while ( m/"(.*?)"/gc ) { print $1, "\n"; }' $*}
314 #getanchors () { perl -ne 'while ( m/«([^«»\n]+)»/gc ) { print $1, "\n"; }' $* }
315 #showINC ()    { perl -e 'for (@INC) { printf "%d %s\n", $i++, $_ }' }
316 #vimpm ()      { vim `perldoc -l $1 | sed -e 's/pod$/pm/'` }
317 #vimhelp ()    { vim -c "help $1" -c on -c "au! VimEnter *" }
318
319 ## END OF FILE #################################################################