-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
49 lines (35 loc) · 1.07 KB
/
.bash_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
37
38
39
40
41
42
43
44
45
46
47
48
49
### export JAVA_HOME=$(/usr/libexec/java_home)
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
export JDK_HOME=$(/usr/libexec/java_home)
# Add environment variable COCOS_CONSOLE_ROOT for cocos2d-x
export COCOS_CONSOLE_ROOT=~/cocos2d-x-3.2/tools/cocos2d-console/bin
export PATH=$COCOS_CONSOLE_ROOT:$PATH
# UNIX
alias rm='rm -i'
alias ll='ls -l'
# git
alias g='git'
alias gs='git status'
alias gc='git commit'
alias ga='git add'
alias gac='git commit -a'
alias tmuxg='tmux new-session \; source-file ~/.tmux.session.conf'
alias mux='tmuxinator'
#
alias mvim='open -a /Applications/MacVim.app "$@"'
export PATH=$PATH:~/play-2.2.1
# rbenv Setting
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
### # added by Anaconda3 5.0.0 installer
### export PATH="/anaconda3/bin:$PATH"
export EDITOR='vim'
export NODE_PATH=`npm root -g`
export PATH=~/.npm-global/bin:$PATH
export PATH=~/.local/bin:$PATH
. /anaconda3/etc/profile.d/conda.sh
ssh-add -K ~/.ssh/id_rsa
# for k8s
alias k=kubectl
# complete -F __start_kubectl k
export PATH="/usr/local/opt/[email protected]/bin:$PATH"