-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile
More file actions
33 lines (26 loc) · 842 Bytes
/
profile
File metadata and controls
33 lines (26 loc) · 842 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
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
OS=`uname`
if [ "$OS" == "Darwin" ]; then
alias ls="ls -Gp"
if [ -f /opt/local/etc/bash_completion ]; then
. /opt/local/etc/bash_completion
fi
else
alias ls="ls --color=auto -p"
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
if [ -f $HOME/src/arcanist/resources/shell/bash-completion ]; then
. $HOME/src/arcanist/resources/shell/bash-completion
fi
if [ -f $HOME/setup/tools/liquidprompt/liquidprompt ]; then
. $HOME/setup/tools/liquidprompt/liquidprompt
fi
export PATH=/opt/chef/bin:/opt/local/bin:/opt/local/sbin:$PATH:~/src/arcanist/bin/:$HOME/bin:$HOME/setup/bin
export PS1="\[\e[1;33m\]\u\[\e[1;0m\]@\[\e[1;32m\]\h\[\e[1;0m\]:\w$ "
export EDITOR=vim
export LANG=en_US.UTF-8
export RAZOR_API=http://razor.zetta.io:8080/api