Skip to content

Commit f531045

Browse files
committed
Add mail stuff
1 parent 3b23c39 commit f531045

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

bash_profile

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
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+
117
# 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}\$ "
320

421
# Meta alias's
522
alias osu="open -a Sublime\ Text\ 2"
623
alias prof="subl ~/.bash_profile"
724
alias reprof=". ~/.bash_profile"
825

926
# Navigational alias's
10-
alias pdf="cd /Users/jDub/Documents/pdfs"
27+
alias pdf="cd ~/Documents/pdfs"
1128
alias de="cd ~/Desktop"
1229
alias ds="cd ~/Documents"
1330
alias c="cd ~/Documents/cp"
@@ -35,7 +52,6 @@ alias gm="git merge"
3552
alias gpom="git push origin master"
3653
alias gpum="git pull origin master"
3754
alias gd="git diff"
38-
alias grb="git rebase"
3955
alias gpo="git push origin"
4056
alias gob="git checkout -b"
4157

@@ -67,4 +83,9 @@ tosu () {
6783
}
6884

6985
# 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

Comments
 (0)