-
Notifications
You must be signed in to change notification settings - Fork 2
/
profile
36 lines (27 loc) · 795 Bytes
/
profile
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
if [ -f ~/.git-completion ]; then
source ~/.git-completion
fi
if [ -f ~/.bash_aliases ]; then
source ~/.bash_aliases
fi
if [ -f ~/.resty/resty ]; then
source ~/.resty/resty
fi
export GEM_EDITOR='mvim'
export EDITOR="vim"
# colour terminal and add git branch name
export CLICOLOR=1
export LS_COLORS=exfxcxdxbxegedabagacad
export PS1='\h:\W$(__git_ps1 "(%s)") \u\$ '
export CLOJURESCRIPT_HOME=/usr/local/clojurescript
export PATH=$PATH:$CLOJURESCRIPT_HOME/bin
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
function authme {
ssh $1 'cat >>~/.ssh/authorized_keys' <~/.ssh/id_dsa.pub
}
# ruby version manager
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
# node version managmer
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh