Create PATH manually instead of relying on system PATH generation
This commit is contained in:
parent
64e7da3020
commit
66c8f9ff3c
1 changed files with 2 additions and 1 deletions
3
profile
3
profile
|
@ -3,6 +3,7 @@
|
|||
# Eryn Wells <eryn@3b518c.com>
|
||||
|
||||
# Environment settings
|
||||
PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/X11/bin
|
||||
PAGER="less"
|
||||
MANPAGER="less"
|
||||
EDITOR="vim"
|
||||
|
@ -23,7 +24,6 @@ case $arch in
|
|||
;;
|
||||
|
||||
Darwin)
|
||||
PATH=/opt/local/bin:$PATH # MacPorts
|
||||
alias indent='gnuindent'
|
||||
;;
|
||||
esac
|
||||
|
@ -33,6 +33,7 @@ esac
|
|||
export NETHACKOPTIONS="color"
|
||||
|
||||
[ -e $HOME/.profile-local ] && source $HOME/.profile-local
|
||||
[ -d $HOME/.local/bin ] && PATH=$HOME/.local/bin:$PATH
|
||||
[ -d $HOME/bin ] && PATH=$HOME/bin:$PATH
|
||||
|
||||
# Start SSH agent for password-less logins
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue