dotfiles/zsh/zshrc

20 lines
454 B
Bash
Raw Normal View History

export DOT_FILES=$HOME/.config
export CURRENT_SHELL=`which zsh`
# Include some ZSH-compatible config from bash (such as aliases, etc)
source $DOT_FILES/bash/common
# Install and load oh-my-zsh
source $DOT_FILES/zsh/oh-my-zsh
# Extra ZSH configuration
2010-06-26 11:27:25 +10:00
source $DOT_FILES/zsh/config
# Rake completion
source $DOT_FILES/zsh/completions
# My custom theme
source $DOT_FILES/zsh/theme
# RVM
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm