]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/00_TODO

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

add magic dotdot rationalisation
[etc/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 [ "$(umask)" = 022 ] && umask 0077
27
28 eval `lesspipe 2>/dev/null`
29
30 WORDCHARS="*?_-.[]~/&;!#$%^(){}<>"
31
32 # report time stats when command takes longer than 5 seconds
33 REPORTTIME=5
34
35 MAILCHECK=0
36
37 # http://grml.org/zsh/zsh-lovers.html
38 rationalise-dot() {
39   if [[ $LBUFFER = *.. ]]; then
40     LBUFFER+=/..
41   else
42     LBUFFER+=.
43   fi
44 }
45 zle -N rationalise-dot
46 bindkey . rationalise-dot
47
48 :
49
50 # vim:ft=zsh