-
Notifications
You must be signed in to change notification settings - Fork 0
/
bash_profile
40 lines (31 loc) · 1.04 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
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig/:$PKG_CONFIG_PATH"
export PGHOST=localhost
export EDITOR=vim
export BUNDLER_EDITOR='vim'
alias ls='ls -lG'
alias be="bundle exec"
alias bi="bundle install"
alias gs="git status"
alias ga="git add ."
alias gaa="git add --all"
alias psgrep="ps aux | grep"
alias pd="pushd"
alias sr='. /Users/dangarmon/Bash/start_rails.sh'
alias gffs="git flow feature start"
alias gfff="git flow feature finish"
alias gfrs="git flow release start"
alias gfrf="git flow release finish"
alias gp="git push"
alias jswb="jekyll serve --watch --baseurl="
alias lr="lein repl"
# Change prompt to the following:
# [user: cwd]
PS1='\[\e[01;37m\][\u: \w] $\[\e[0m\] '
source ~/.profile
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export PATH=/usr/local/bin:$PATH
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
complete -C '/usr/local/bin/aws_completer' aws