]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/99_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:

set warn_create_global and unglobal a few
[etc/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 hash -d $1="$PWD"; cd .; }
13
14 alias Q='exec zsh'
15 alias ozsh='ZDOTDIR=$HOME/.etc/zsh.migrated 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 # use full globbing powers
39 setopt extended_glob
40
41 # don't bitch about bad patterns, just use them verbatim
42 setopt no_bad_pattern
43
44 # don't bitch about no matches, just the glob character verbatim
45 setopt no_nomatch
46
47 # do. not. ever. beep.
48 setopt no_beep
49
50 # use 0xXX and 0XX output instead of 16#XX/8#XX
51 setopt c_bases
52
53 [ "$(umask)" = 022 ] && umask 0077
54
55 # remove '/' from WORDCHARS
56 WORDCHARS="${WORDCHARS//\/}"
57
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
61
62 MAILCHECK=0
63
64 # http://grml.org/zsh/zsh-lovers.html
65 rationalise-dot() {
66   if [[ $LBUFFER = *.. ]]; then
67     LBUFFER+=/..
68   else
69     LBUFFER+=.
70   fi
71 }
72 #zle -N rationalise-dot
73 #bindkey . rationalise-dot
74
75 :
76
77 # vim:ft=zsh