-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzshrc
45 lines (31 loc) · 1014 Bytes
/
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
export AWESOMERC=$HOME/.awesomerc
#export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3.3
export EDITOR=vim
#autoload -U colors && colors
#setopt PROMPT_SUBST
### OH-MY-ZSH
ZSH=$HOME/.awesomerc/oh-my-zsh
COMPLETION_WAITING_DOTS="true"
DISABLE_AUTO_UPDATE="true"
plugins=(wd git osx)
export LANG=en_US.UTF-8
source $ZSH/oh-my-zsh.sh
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# Will be removed sometime later
#source $AWESOMERC/autoenv
#autoload -U promptinit; promptinit
#prompt pure
fpath+=('/Users/linus/.n/lib/node_modules/pure-prompt/functions')
fpath+=$HOME/.zsh/pure
# Source local zshrc
source $HOME/.zshrc.local
autoload -Uz promptinit
promptinit
prompt pure
#for x in $AWESOMERC/zsh/*; do
# source $x
#done
source $AWESOMERC/zsh/aliases
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
export N_PREFIX="$HOME/.n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo).