Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created October 7, 2015 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save workmad3/4c07dea0421db99bf630 to your computer and use it in GitHub Desktop.
Save workmad3/4c07dea0421db99bf630 to your computer and use it in GitHub Desktop.
export PROFILE_D="$HOME/.profile.d"
if [ -d $PROFILE_D ]; then
for conf in `ls $PROFILE_D`; do
export ${conf}=`cat $PROFILE_D/${conf}`
done
fi
if [ -d $HOME/.zshrc.d ]; then
for conf in $HOME/.zshrc.d/*.zsh; do
. $conf
done
fi
if [ -d $HOME/.zsh-commands.d ]; then
for conf in $HOME/.zsh-commands.d/*; do
source $conf
done
fi
source $HOME/.profile
source $HOME/.zshrc.aliases
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
export ZSH=/Users/workmad3/.oh-my-zsh
ZSH_THEME="workmad3"
COMPLETION_WAITING_DOTS="true"
plugins=(
ssh-agent
brew brew-cask
osx
colored-man
zsh_reload
history-substring-search
vi-mode
chruby
git
git-hubflow
rake rake-fast thor
knife
gem
bundler
redis_cli
httpie
heroku
vundle
rails)
# User configuration
source $ZSH/oh-my-zsh.sh
zstyle ':completion:*' verbose yes
zstyle ':completion:*:descriptions' format '%B%d%b'
zstyle ':completion:*:messages' format '%d'
zstyle ':completion:*:warnings' format 'No matches for: %d'
zstyle ':completion:*' group-name
zstyle ':completion:*' completer _complete _match _approximate
zstyle ':completion:*:match:*' original only
zstyle ':completion:*:approximate:*' max-errors 1 numeric
zstyle ':completion:*:functions' ignored-patterns '_*'
fpath=($HOME/.zsh-completions.d /usr/local/share/zsh-completions $fpath)
autoload -U $HOME/.zsh-completions.d/*(:t)
autoload -U /usr/local/share/zsh-completions/*(:t)
compinit
/usr/local/bin/vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment