-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
24 lines (17 loc) · 838 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
# Customize to your needs...
export PATH=/Library/Frameworks/Python.framework/Versions/2.7/bin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
# Edited Section
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git osx brew github python grep)
export PATH=$PATH:$HOME/spark
export PS1="%F{208}[%m]%f %F{226}%~%f: "
if [ -f ~/.profiles/.alias ]; then
source ~/.profiles/.alias
fi
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# brew
eval $(/opt/homebrew/bin/brew shellenv)
eval $(thefuck --alias)