forked from faun/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
63 lines (45 loc) · 1.68 KB
/
zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
if [ -f $HOME/.anyshell/paths ]; then
source $HOME/.anyshell/paths
fi
# Path to your oh-my-zsh configuration.
export ZSH=$HOME/.oh-my-zsh
# Set to this to use case-sensitive completion
# export CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
export DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# export DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# export DISABLE_AUTO_TITLE="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
# use .localrc for settings specific to one system
[[ -f $HOME/.localrc ]] && . $HOME/.localrc
# Autojump
if [[ `uname` == 'Darwin' ]]; then
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
autoload -U compinit && compinit
fi
# Add bin directory to path
if [ -d $HOME/bin ]; then
export PATH="$HOME/bin:$PATH"
fi
# Enable RVM
export rvm_path="$HOME/.rvm"
[[ -s $rvm_path/scripts/rvm ]] && source $rvm_path/scripts/rvm
__rvm_project_rvmrc
plugins=(git rails rails3 rails4 brew bundler)
source $ZSH/oh-my-zsh.sh
source $HOME/.anyshell/functions
source $HOME/.anyshell/aliases
source $HOME/.zsh/aliases
source $HOME/.zsh/completion
source $HOME/.zsh/config
source $HOME/.zsh/faunzy.zsh-theme
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
# export ZSH_THEME="random"
export PATH=$HOME/node_modules/.bin/lessc:$PATH
export PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting