Compare commits
2 commits
574ac34e49
...
20b8410fb2
Author | SHA1 | Date | |
---|---|---|---|
20b8410fb2 | |||
f2df9247b8 |
1 changed files with 7 additions and 0 deletions
|
@ -29,10 +29,17 @@ export TERM=xterm-color
|
|||
# Alias definitions.
|
||||
[[ -f ~/.bash_aliases ]] && . ~/.bash_aliases
|
||||
|
||||
<<<<<<< HEAD
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
[[ -d "$HOME/bin" ]] && PATH+=":$HOME/bin"
|
||||
[[ -d "$HOME/.local/bin" ]] && PATH+=":$HOME/.local/bin"
|
||||
[[ -d "$HOME/scipts/bin" ]] && PATH+=":$HOME/scripts/bin"
|
||||
=======
|
||||
# set PATH so it includes certain bin folders if they exist
|
||||
[[ -d ~/bin ]] && PATH+=":$HOME/bin"
|
||||
[[ -d ~/.local/bin ]] && PATH+=":$HOME/.local/bin"
|
||||
[[ -d /usr/local/go/bin ]] && PATH+=":/usr/local/go/bin"
|
||||
>>>>>>> 574ac34e491aaaad429e0df90280e7a0b5e8c7f5
|
||||
|
||||
# source misc user scripts
|
||||
if [ -d ~/git/dotfiles/source ]; then
|
||||
|
|
Loading…
Reference in a new issue