-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlocal.sh
More file actions
31 lines (21 loc) · 663 Bytes
/
local.sh
File metadata and controls
31 lines (21 loc) · 663 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
# Usage:
# echo ". ~/.bash/local.sh" > ~/.bashrc
dir=`dirname $BASH_SOURCE`
. $dir/common/terminal.sh
export PS1='\[\033[0;37m\]\w\[\033[00m\] \$ ' # override PS1 to a simpler format
. $dir/common/path.sh
. $dir/common/misc-env.sh
. $dir/common/misc-shortcuts.sh
. $dir/desktop/path.sh
. $dir/desktop/misc-env.sh
. $dir/desktop/editors.sh
. $dir/desktop/work.sh
. $dir/desktop/go.sh
. $dir/desktop/postgres.sh
. $dir/desktop/android.sh
. $dir/common/git.sh
. $dir/common/git-one-letter-aliases.sh
alias rc='cd ~/.bash; mate . -w; source ~/.bash_login'
test -r /sw/bin/init.sh && . /sw/bin/init.sh
eval "$(rbenv init -)"
export CHAIN=$GOPATH/src/chain