-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_path
30 lines (22 loc) · 885 Bytes
/
bash_path
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
## Moving some of the crap out of my .profile in order to make things neater
#### Let's take care of our $PATH
# A backup of the original $PATH
# /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
# My preferred order - /usr/local goes first, damn it!
# Also, add /usr/local/sbin
PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin
# Append $HOME/bin
export PATH=$PATH:$HOME/bin
# Add python bin for eggs, pip, etc.
export PATH=$PATH:/usr/local/Cellar/python/2.7/bin
# Vim 7.3b
VIM=/usr/local/vim3/bin
export PATH=$VIM:$PATH
#### Now let's take care of the $MANPATH
# Backup of original $MANPATH
# usr/share/man:/usr/local/share/man:/usr/X11/man
# My manpath - fix /usr/local/man here so that it goes first
MANPATH=/usr/local/man:/usr/local/share/man:/usr/share/man:/usr/X11/man
# Vim 7.3b
VIM=/usr/local/vim3/man
export MANPATH=$VIM:$MANPATH