2010-06-26 11:04:19 +10:00
|
|
|
export CURRENT_SHELL=`which zsh`
|
2010-06-29 22:20:19 +10:00
|
|
|
export DOT_FILES=$HOME/.config
|
2010-06-25 17:02:29 +10:00
|
|
|
|
2010-06-29 22:20:19 +10:00
|
|
|
# Common functionality between Zsh and Bash
|
|
|
|
source $DOT_FILES/shell/common.sh
|
2010-06-27 01:12:01 +10:00
|
|
|
|
|
|
|
# Install and load oh-my-zsh
|
2010-06-29 22:20:19 +10:00
|
|
|
source $DOT_FILES/zsh/oh-my-zsh.zsh
|
2010-06-27 01:12:01 +10:00
|
|
|
|
|
|
|
# Extra ZSH configuration
|
2010-06-29 22:20:19 +10:00
|
|
|
source $DOT_FILES/zsh/config.zsh
|
2010-06-27 01:12:01 +10:00
|
|
|
|
2010-06-29 21:40:15 +10:00
|
|
|
# Rake completion
|
2010-06-29 22:20:19 +10:00
|
|
|
source $DOT_FILES/zsh/completions.zsh
|
2010-06-29 21:40:15 +10:00
|
|
|
|
2010-06-29 21:41:45 +10:00
|
|
|
# Rake completion
|
2010-06-29 22:20:19 +10:00
|
|
|
source $DOT_FILES/zsh/rake_completion.zsh
|
2010-06-29 21:41:45 +10:00
|
|
|
|
2010-06-27 01:12:01 +10:00
|
|
|
# My custom theme
|
2010-06-29 22:20:19 +10:00
|
|
|
source $DOT_FILES/zsh/theme.zsh
|
2010-06-28 09:41:56 +10:00
|
|
|
|
|
|
|
# RVM
|
|
|
|
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
|