diff options
author | root <root@kremium> | 2011-12-01 20:59:27 +0100 |
---|---|---|
committer | root <root@kremium> | 2011-12-01 20:59:27 +0100 |
commit | 2d733f93b82a1c11a014af1a3dd07d3540282356 (patch) | |
tree | ec23111722523ec03ec7d35e708735cf787c6f79 /infest/profiles/makefu/zshrc | |
parent | bfa204a580a503a216cedbedd36586fb00458181 (diff) | |
parent | 4be0c81eafe0f315b91eb13d5d9aa8886faef308 (diff) |
Merge branch 'master' of http://github.com/krebscode/painload
Diffstat (limited to 'infest/profiles/makefu/zshrc')
-rw-r--r-- | infest/profiles/makefu/zshrc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/infest/profiles/makefu/zshrc b/infest/profiles/makefu/zshrc new file mode 100644 index 00000000..a60313e5 --- /dev/null +++ b/infest/profiles/makefu/zshrc @@ -0,0 +1,44 @@ + +# Path to your oh-my-zsh configuration. +export ZSH=$HOME/.oh-my-zsh + +# Look in ~/.oh-my-zsh/themes/ +export ZSH_THEME="gallifrey" + +# Comment this out to disable weekly auto-update checks +export DISABLE_AUTO_UPDATE="true" + +# export DISABLE_LS_COLORS="true" + +plugins=(git ssh-agent) +source $ZSH/oh-my-zsh.sh +test -e $HOME/.bash_alias && source $HOME/.bash_alias + +# Customize to your needs... +export PATH=$PATH:/krebs/bin:$HOME/bin +HISTFILE=~/.histfile +HISTSIZE=900001 +SAVEHIST=900001 + +export EDITOR=vim + +export JAVA_HOME=/opt/java/jre + +GREP_COLOR="1;33" +alias grep='grep --color=auto' + +export MANPATH=$MANPATH:$HOME/man + +if [ -f "$HOME/.dircolors" ] ; then + eval `dircolors -b "$HOME/.dircolors"` + export LS_COLORS +fi + +which fortune >/dev/null && fortune -a +which task >/dev/null && task +echo "--" +test -r ~/TODO && cat ~/TODO + +test -r ~/Dropbox/shared_shell && source ~/Dropbox/shared_shell +setopt menu_complete +unsetopt correct_all |