1
+ # Set default editor
2
+ EDITOR=vim
3
+
4
+ # Configure command line colors
5
+ export CLICOLOR=1
6
+ export LSCOLORS=ExFxBxDxCxegedabagacad
7
+ alias ls=' ls -GFh'
8
+
9
+ # Set color variables
10
+ YELLOW=" \[\e[0;33m\]"
11
+ RED=" \[\e[0;31m\]"
12
+ PURPLE=" \[\e[1;34m\]"
13
+
14
+ # load script that allows for showing git branch is PS1
15
+ source /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-prompt.sh
16
+
1
17
# Change command prompt display
2
- PS1=" \[\e[0;95m\]\W: jDub\$ \[\e[0m\] "
18
+ NAME=" jDub"
19
+ export PS1=" ${YELLOW} \W:${PURPLE} \$ (__git_ps1)${RED} ${NAME} \$ "
3
20
4
21
# Meta alias's
5
22
alias osu=" open -a Sublime\ Text\ 2"
6
23
alias prof=" subl ~/.bash_profile"
7
24
alias reprof=" . ~/.bash_profile"
8
25
9
26
# Navigational alias's
10
- alias pdf=" cd /Users/jDub /Documents/pdfs"
27
+ alias pdf=" cd ~ /Documents/pdfs"
11
28
alias de=" cd ~/Desktop"
12
29
alias ds=" cd ~/Documents"
13
30
alias c=" cd ~/Documents/cp"
@@ -35,7 +52,6 @@ alias gm="git merge"
35
52
alias gpom=" git push origin master"
36
53
alias gpum=" git pull origin master"
37
54
alias gd=" git diff"
38
- alias grb=" git rebase"
39
55
alias gpo=" git push origin"
40
56
alias gob=" git checkout -b"
41
57
@@ -67,4 +83,9 @@ tosu () {
67
83
}
68
84
69
85
# Run python's simple server
70
- alias serve=" python -m SimpleHTTPServer"
86
+ alias serve=" python -m SimpleHTTPServer"
87
+
88
+ export REPLYTO=mail@mail.com # put your email address here
89
+ alias zach=" mail zach@fake_gmail.com"
90
+ alias tony=" mail tony@fake_hackreactor.com"
91
+ alias bonnie=" mail bonnie@fake_gmail.com"
0 commit comments