Merge branch 'master' of github.com:staticsafe/dotfiles

This commit is contained in:
staticsafe 2012-01-08 14:57:09 -05:00
commit 6a51820949
1 changed files with 10 additions and 0 deletions

10
.zshrc
View File

@ -10,6 +10,16 @@ setopt APPEND_HISTORY
setopt EXTENDED_HISTORY
setopt EXTENDED_GLOB
# number of lines kept in history
export HISTSIZE=1000
# number of lines saved in the history after logout
export SAVEHIST=1000
# location of history
export HISTFILE=~/.zhistory
# append command to history file once executed
setopt inc_append_history
#aliases
alias rmdir='rm -r'
alias sl='ls'
alias octalperm="stat -c '%A %a %n' *"