2011-07-28 20:13:48 +00:00
|
|
|
# Copyright (C) 2004-2011 Gabriel Ebner
|
2008-03-16 21:02:24 +00:00
|
|
|
|
2011-04-30 18:21:21 +00:00
|
|
|
. ~/.commonshrc
|
2008-03-16 21:02:24 +00:00
|
|
|
|
2011-07-28 20:13:48 +00:00
|
|
|
# oh-my-zsh
|
|
|
|
export ZSH=$HOME/etc/oh-my-zsh
|
2008-03-16 21:02:24 +00:00
|
|
|
|
2011-07-28 20:27:15 +00:00
|
|
|
export ZSH_THEME=gebner
|
2011-07-28 20:13:48 +00:00
|
|
|
export DISABLE_AUTO_UPDATE=true
|
2008-03-16 21:02:24 +00:00
|
|
|
|
2011-07-28 20:13:48 +00:00
|
|
|
plugins=(git ant deb debian gem git git-flow github perl rails3 ruby)
|
2008-03-16 21:02:24 +00:00
|
|
|
|
2011-07-28 20:13:48 +00:00
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
2011-08-10 17:39:52 +00:00
|
|
|
setopt nocorrect_all
|
|
|
|
|
2011-07-28 20:13:48 +00:00
|
|
|
# History
|
2008-03-16 21:02:24 +00:00
|
|
|
setopt APPEND_HISTORY SHARE_HISTORY EXTENDED_HISTORY INC_APPEND_HISTORY \
|
2010-03-18 10:06:24 +00:00
|
|
|
HIST_IGNORE_ALL_DUPS HIST_FIND_NO_DUPS HIST_IGNORE_SPACE
|
2008-03-16 21:02:24 +00:00
|
|
|
HISTSIZE=100000
|
|
|
|
SAVEHIST=100000
|
|
|
|
HISTFILE=~/.zhist
|