-
Notifications
You must be signed in to change notification settings - Fork 0
/
bashrc.mac
47 lines (38 loc) · 1.4 KB
/
bashrc.mac
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
40
41
42
43
44
45
46
47
# brew stuff
export PATH="$(/usr/local/bin/brew --prefix coreutils)/libexec/gnubin:/usr/local/bin:$PATH"
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export PATH=$PATH':/usr/local/sbin'
MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
# Global Variables
export EDITOR=vim
export TERM='xterm-256color'
# for solarized only
# export PS1="\[\033[0;35m\][\u@\h \W]\[\033[0m\]$ ";
export PS1="\[\033[0;33m\][\u@\h \W]\[\033[0m\]$ ";
export CLICOLOR=1
alias ls='gls --color'
alias la='gls -a'
alias ll='gls -al'
export PATH=$PATH':/Users/mozilla/Manually-Installed/mozpaste' # pastebin.m.o
export PATH=$PATH':/Applications/Racket v6.0.1/bin' # Racket
# Proxy
#export HTTP_PROXY='http://proxy.iiit.ac.in:8080'
#export HTTPS_PROXY='http://proxy.iiit.ac.in:8080'
#export FTP_PROXY='http://proxy.iiit.ac.in:8080'
#export http_proxy='http://proxy.iiit.ac.in:8080'
#export https_proxy='http://proxy.iiit.ac.in:8080'
#export ftp_proxy='http://proxy.iiit.ac.in:8080'
#export no_proxy='localhost,127.0.0.1/8,10.0.0.0/8,192.168.0.0/16,172.16.0.0/16'
#export NO_PROXY='localhost,127.0.0.1/8,10.0.0.0/8,192.168.0.0/16,172.16.0.0/16'
# No Proxy
#export HTTP_PROXY=''
#export HTTPS_PROXY=''
#export FTP_PROXY=''
#export http_proxy=''
#export https_proxy=''
#export ftp_proxy=''
#export no_proxy=''
#export NO_PROXY=''
#alias apaste='curl -F '''paste=<-'\'' http://apaste.info/store'