dotfiles/zsh/zshrc

24 lines
588 B
Bash
Raw Normal View History

export CURRENT_SHELL="zsh"
export DOT_FILES=$(dirname $(dirname $(readlink $HOME/.zshrc)))
# Install and load oh-my-zsh
2010-06-29 22:20:19 +10:00
source $DOT_FILES/zsh/oh-my-zsh.zsh
# Common functionality between Zsh and Bash
source $DOT_FILES/shell/common.sh
2011-02-18 12:47:15 +11:00
# 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
2011-09-20 06:12:35 +10:00
# Tmuxinator
[[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator
alias tmuxinator='rvm default exec tmuxinator'
# RVM
2011-02-18 12:47:15 +11:00
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
rvm default