1 export PATH="$PATH:$HOME/bin"
4 export MAIL=$HOME/Maildir
8 # Source any file in .zsh.d
9 for f in $HOME/.zsh.d/* ; do . $f; done
13 # set prompt defined in .zsh.d/prompt
19 printf '\033]2;%s\007' "${(V)1}"
22 # CLICOLOR makes 'ls' colorize its output
26 bindkey -e # use emacs keymap
27 # Customize a bit the bindings
28 bindkey "$terminfo[kdch1]" 'delete-char' #Suppr
29 bindkey "$terminfo[khome]" 'beginning-of-line' #Home key
30 bindkey "$terminfo[kend]" 'end-of-line' #End key
31 bindkey "$terminfo[kcuu1]" history-beginning-search-backward #Up key
32 bindkey "$terminfo[kcud1]" history-beginning-search-forward #Down key
37 #Make 'cd' being in fact a 'pushd'
39 setopt autopushd pushdminus pushdsilent pushdtohome