]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/99_TODO
add some options from the guide
[zsh.git] / .zsh / zshrc / 99_TODO
1 # zshrc/99_TODO
2 #
3 # All kinds of stuff not yet split to other files
4 # TEMPORARY
5 #
6 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
7 # Released under the terms of the Artistic Licence 2.0
8 #
9 # Source repository: http://git.madduck.net/v/etc/zsh.git
10 #
11
12 ldir() { eval $1="$PWD" ; : ~$1 }
13
14 alias Q='exec zsh'
15 alias ozsh='ZDOTDIR=$HOME/.etc/zsh exec zsh'
16
17 # do not clobber files with >
18 setopt noclobber
19
20 # automatically maintain a directory stack
21 setopt autopushd pushdminus pushdsilent pushdtohome
22
23 # brace expansion
24 setopt braceccl
25
26 # report immediately when background jobs finish
27 setopt notify
28 # do not auto-nice background processes
29 setopt no_bgnice
30 # do not send HUP signal to jobs when the shell exits
31 setopt nohup
32 # do alert me of running jobs before exiting
33 setopt checkjobs
34
35 # disable backslashed escape sequences unless -e is given to echo 
36 setopt bsd_echo
37
38 # don't bitch about bad patterns, just use them verbatim
39 setopt no_bad_pattern
40
41 # don't bitch about no matches, just the glob character verbatim
42 setopt no_nomatch
43
44 [ "$(umask)" = 022 ] && umask 0077
45
46 eval `lesspipe 2>/dev/null`
47
48 WORDCHARS="*?_-.[]~/&;!#$%^(){}<>"
49
50 # report time stats when command takes longer than 5 seconds
51 REPORTTIME=5
52
53 MAILCHECK=0
54
55 # http://grml.org/zsh/zsh-lovers.html
56 rationalise-dot() {
57   if [[ $LBUFFER = *.. ]]; then
58     LBUFFER+=/..
59   else
60     LBUFFER+=.
61   fi
62 }
63 zle -N rationalise-dot
64 bindkey . rationalise-dot
65
66 :
67
68 # vim:ft=zsh