forked from guileen/config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc
More file actions
36 lines (29 loc) · 1018 Bytes
/
bashrc
File metadata and controls
36 lines (29 loc) · 1018 Bytes
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
# Check for an interactive session
[ -z "$PS1" ] && return
alias ls='ls --color=auto'
alias ll='ls -l -S -h'
alias pss='ps aux|grep'
alias vbox=VirtualBox
alias xp="VirtualBox --startvm XP &> /dev/null &"
alias vnc="vncviewer -FullColor=0 -LowColorLevel=2 192.168.1.110"
#PS1='[\u@\h \W]\$ '
PS1='\u \W>'
PATH=/opt/eclipse:/opt/google-appengine:~/config/bin:$PATH
PYTHONPATH=~/projects/clevercss3/:$PYTHONPATH
export HAXE_LIBRARY_PATH=/opt/haxe/std
export EDITOR=vim
source ~/config/alias
complete -cf sudo
source ~/config/bin/git-completion.bash
source ~/config/bin/hg_bash_completion
source ~/config/bin/bash_completion_tmux.sh
# source ~/toolkits/npm/npm-completion.sh
# . ~/config/bin/z.sh
function setproxy {
export http_proxy=http://proxy.gxlu.com.cn:8888
export https_proxy=http://proxy.gxlu.com.cn:8888
export all_proxy=http://proxy.gxlu.com.cn:8888
}
export NVM_DIR="/Users/gl/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
[ -f ~/.fzf.bash ] && source ~/.fzf.bash