72 lines
2.0 KiB
Bash
72 lines
2.0 KiB
Bash
# --------------------------------
|
|
#
|
|
# DO NOT EDIT THIS FILE.
|
|
# If you want to make changes, do so in the custom/zsh directory.
|
|
# Fork and send pull requests to add features and fix bugs. Thanks!
|
|
#
|
|
# ================================
|
|
|
|
# Don't change. The following determines where YADR is installed.
|
|
yadr=`find -L ~ -type file -maxdepth 2 -name .yadr | head | sed 's:\.yadr\/::'`
|
|
|
|
# Source oh-my-zsh if it is installed.
|
|
if [[ -d $HOME/.oh-my-zsh ]]; then
|
|
# Path to your oh-my-zsh configuration.
|
|
ZSH=$HOME/.oh-my-zsh
|
|
|
|
# Set name of the theme to load.
|
|
ZSH_THEME="robbyrussell"
|
|
|
|
# Default plugins.
|
|
plugins=(brew git github ruby)
|
|
|
|
# source every zsh file in user's custom/zsh/before. This is useful for setting theme and plugins.
|
|
if [[ -d $yadr/custom/zsh/before/ ]]; then
|
|
for config_file ($yadr/custom/zsh/before/**/*.zsh) source $config_file
|
|
fi
|
|
|
|
# Source oh-my-zsh
|
|
source $ZSH/oh-my-zsh.sh
|
|
fi
|
|
|
|
# Configuration
|
|
for config_file ($yadr/zsh/*.zsh) source $config_file
|
|
|
|
# RVM / rbenv
|
|
if [[ -d ~/.rvm/ ]] && [[ -d ~/.rbenv/ ]]; then
|
|
# TODO: colorize
|
|
echo '***************************************************************'
|
|
echo 'ERROR!'
|
|
echo 'YADR found both ~/.rvm and ~/.rbenv directories. You cannot use'
|
|
echo 'RVM and rbenv simultaneously. Please delete one and reload zsh.'
|
|
echo '***************************************************************'
|
|
echo ''
|
|
else
|
|
if [[ -d ~/.rvm/ ]]; then
|
|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
|
|
fi
|
|
if [[ -d ~/.rbenv/ ]]; then
|
|
eval "$(rbenv init -)"
|
|
fi
|
|
fi
|
|
|
|
# ------------------
|
|
# zsh/after
|
|
# ==================
|
|
# source every zsh file in user's custom/zsh/after.
|
|
if [[ -d $yadr/custom/zsh/after/ ]]; then
|
|
for config_file ($yadr/custom/zsh/after/**/*.zsh) source $config_file
|
|
fi
|
|
|
|
# Put secret configuration settings in ~/.secrets
|
|
if [[ -a ~/.secrets ]] then
|
|
source ~/.secrets
|
|
fi
|
|
|
|
# Speed up git completion
|
|
# http://talkings.org/post/5236392664/zsh-and-slow-git-completion
|
|
__git_files () {
|
|
_wanted files expl 'local files' _files
|
|
}
|
|
|