+++ /dev/null
-# Push and pop directories on directory stack
-alias pu='pushd'
-alias po='popd'
-
-# Basic directory operations
-alias ...='cd ../..'
-alias -- -='cd -'
-
-# Super user
-alias _='sudo'
-alias please='sudo'
-
-#alias g='grep -in'
-
-# Show history
-alias history='fc -l 1'
-
-# List direcory contents
-alias lsa='ls -lah'
-alias l='ls -lA1'
-alias ll='ls -l'
-alias la='ls -lA'
-alias sl=ls # often screw this up
-
-alias afind='ack-grep -il'
-
unsetopt menu_complete # do not autoselect the first completion entry
unsetopt flowcontrol
-setopt auto_menu # show completion menu on succesive tab press
+setopt no_auto_menu # don't show completion menu on succesive tab press
setopt complete_in_word
setopt always_to_end
alias mv='nocorrect mv'
alias mysql='nocorrect mysql'
alias mkdir='nocorrect mkdir'
-alias gist='nocorrect gist'
-alias heroku='nocorrect heroku'
-alias ebuild='nocorrect ebuild'
-alias hpodder='nocorrect hpodder'
alias cd.....='cd ../../../..'
alias cd/='cd /'
+alias -- -='cd -'
alias 1='cd -'
alias 2='cd +2'
alias 3='cd +3'
## Command history configuration
-HISTFILE=$HOME/.zsh_history
+HISTFILE=$HOME/.histfile
HISTSIZE=10000
SAVEHIST=10000
setopt hist_verify
setopt inc_append_history
setopt share_history # share command history data
+
+alias history='fc -l 1'