dotfiles/zsh/zshrc

23 lines
509 B
Bash
Raw Normal View History

export CURRENT_SHELL=`which zsh`
2010-06-29 22:20:19 +10:00
export DOT_FILES=$HOME/.config
2010-06-29 22:20:19 +10:00
# Common functionality between Zsh and Bash
source $DOT_FILES/shell/common.sh
# Install and load oh-my-zsh
2010-06-29 22:20:19 +10:00
source $DOT_FILES/zsh/oh-my-zsh.zsh
# Extra ZSH configuration
2010-06-29 22:20:19 +10:00
source $DOT_FILES/zsh/config.zsh
# Rake completion
2010-06-29 22:20:19 +10:00
source $DOT_FILES/zsh/completions.zsh
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
# My custom theme
2010-06-29 22:20:19 +10:00
source $DOT_FILES/zsh/theme.zsh
# RVM
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm