Auto Update
This commit is contained in:
parent
96b2980333
commit
574ac34e49
1 changed files with 5 additions and 4 deletions
|
@ -29,10 +29,10 @@ export TERM=xterm-color
|
||||||
# Alias definitions.
|
# Alias definitions.
|
||||||
[[ -f ~/.bash_aliases ]] && . ~/.bash_aliases
|
[[ -f ~/.bash_aliases ]] && . ~/.bash_aliases
|
||||||
|
|
||||||
# set PATH so it includes user's private bin if it exists
|
# set PATH so it includes certain bin folders if they exist
|
||||||
[[ -d "$HOME/bin" ]] && PATH+=":$HOME/bin"
|
[[ -d ~/bin ]] && PATH+=":$HOME/bin"
|
||||||
[[ -d "$HOME/.local/bin" ]] && PATH+=":$HOME/.local/bin"
|
[[ -d ~/.local/bin ]] && PATH+=":$HOME/.local/bin"
|
||||||
[[ -d "/usr/local/go/bin" ]] && PATH+=":/usr/local/go/bin"
|
[[ -d /usr/local/go/bin ]] && PATH+=":/usr/local/go/bin"
|
||||||
|
|
||||||
# source misc user scripts
|
# source misc user scripts
|
||||||
if [ -d ~/git/dotfiles/source ]; then
|
if [ -d ~/git/dotfiles/source ]; then
|
||||||
|
@ -47,6 +47,7 @@ PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$ '
|
||||||
PKG_COMP=/usr/share/doc/pkgfile/command-not-found.bash
|
PKG_COMP=/usr/share/doc/pkgfile/command-not-found.bash
|
||||||
[[ -f $PKG_COMP ]] && . $PKG_COMP
|
[[ -f $PKG_COMP ]] && . $PKG_COMP
|
||||||
|
|
||||||
|
# source fzf scripts
|
||||||
if [ -d ~/.fzf ]; then
|
if [ -d ~/.fzf ]; then
|
||||||
source ~/.fzf/completion.bash
|
source ~/.fzf/completion.bash
|
||||||
source ~/.fzf/key-bindings.bash
|
source ~/.fzf/key-bindings.bash
|
||||||
|
|
Loading…
Reference in a new issue