|
|
|
@ -166,19 +166,3 @@ export VISUAL=$EDITOR |
|
|
|
[[ -f ~/.resh/shellrc ]] && source ~/.resh/shellrc # this line was added by RESH (Rich Enchanced Shell History) |
|
|
|
[[ -f ~/.resh/shellrc ]] && source ~/.resh/shellrc # this line was added by RESH (Rich Enchanced Shell History) |
|
|
|
|
|
|
|
|
|
|
|
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh # this line was added by RESH (Rich Enchanced Shell History) |
|
|
|
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh # this line was added by RESH (Rich Enchanced Shell History) |
|
|
|
|
|
|
|
|
|
|
|
# set PATH so it includes user's private bin if it exists |
|
|
|
|
|
|
|
if [ -d "$HOME/bin" ] ; then |
|
|
|
|
|
|
|
export PATH="$HOME/bin:$PATH" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# set PATH so it includes user's private bin if it exists |
|
|
|
|
|
|
|
if [ -d "$HOME/.local/bin" ] ; then |
|
|
|
|
|
|
|
export PATH="$HOME/.local/bin:$PATH" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# set PATH so it includes cargo bin if it exists |
|
|
|
|
|
|
|
if [ -d "$HOME/.cargo/bin" ] ; then |
|
|
|
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|