All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 # All kinds of stuff not yet split to other files
6 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
7 # Released under the terms of the Artistic Licence 2.0
9 # Source repository: http://git.madduck.net/v/etc/zsh.git
12 ldir() { eval hash -d $1="$PWD"; cd .; }
15 alias ozsh='ZDOTDIR=$HOME/.etc/zsh.migrated exec zsh'
17 # do not clobber files with >
20 # automatically maintain a directory stack
21 setopt autopushd pushdminus pushdsilent pushdtohome
26 # report immediately when background jobs finish
28 # do not auto-nice background processes
30 # do not send HUP signal to jobs when the shell exits
32 # do alert me of running jobs before exiting
35 # disable backslashed escape sequences unless -e is given to echo
38 # use full globbing powers
41 # don't bitch about bad patterns, just use them verbatim
44 # don't bitch about no matches, just the glob character verbatim
47 # do. not. ever. beep.
50 # use 0xXX and 0XX output instead of 16#XX/8#XX
53 [ "$(umask)" = 022 ] && umask 0077
55 # remove '/' from WORDCHARS
56 WORDCHARS="${WORDCHARS//\/}"
58 # report time stats when command takes longer than 5 seconds
59 # typeset -g to make warn_create_global happy
60 typeset -g REPORTTIME=5
64 # http://grml.org/zsh/zsh-lovers.html
66 if [[ $LBUFFER = *.. ]]; then
72 #zle -N rationalise-dot
73 #bindkey . rationalise-dot