]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/00_TODO
correct aliases for zcp and zln
[zsh.git] / .zsh / zshrc / 00_TODO
1 # zshrc/00_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 # automatically remove duplicates from these arrays
27 typeset -gU path cdpath fpath manpath
28
29 # http://xanana.ucsc.edu/~wgscott/wordpress_new/wordpress/?p=12
30 typeset -ga preexec_functions
31 typeset -ga precmd_functions
32 typeset -ga chpwd_functions
33
34 [ "$(umask)" = 022 ] && umask 0077
35
36 eval `lesspipe 2>/dev/null`
37
38 WORDCHARS="*?_-.[]~/&;!#$%^(){}<>"
39
40 # report time stats when command takes longer than 5 seconds
41 REPORTTIME=5
42
43 MAILCHECK=0
44
45 :
46
47 # vim:ft=zsh