forked from lewagon/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzshrc
More file actions
17 lines (15 loc) · 755 Bytes
/
zshrc
File metadata and controls
17 lines (15 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="robbyrussell"
RPS1='[$(ruby_prompt_info)]$EPS1' # Add ruby version on prompt (float right)
COMPLETION_WAITING_DOTS="true"
plugins=(gitfast brew rbenv last-working-dir common-aliases sublime history-substring-search zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
export RBENV_ROOT=$HOME/.rbenv
export PATH="${RBENV_ROOT}/bin:${PATH}"
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
export PATH="./bin:/usr/local/bin:${PATH}"
[[ -f "$HOME/.aliases" ]] && source "$HOME/.aliases"
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export BUNDLER_EDITOR="'/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl'"
export BUNDLER_EDITOR="'/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl'"