From e7e55fbfe688edc7ad8e2f273abd66be7ef54c19 Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Sat, 1 Apr 2023 10:17:27 -0400 Subject: Add back git-completion --- .bash_profile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index 097abb6..7252b7f 100755 --- a/.bash_profile +++ b/.bash_profile @@ -15,10 +15,14 @@ export PS1="\[$(tput setaf 12)\][\[$(tput bold)\]\[$(tput setaf 2)\]\u\[$(tput s # Exports ## export PRJ_HOME=$HOME/projects + +## Programming langs - may be worth moving to pc_local if I move off of arch for all export JAVA_HOME=/usr/lib/jvm/default/ export GO_HOME=/usr/local/go export GOPATH=$PLAYGROUND_HOME/go export CARGO_HOME=$HOME/.cargo/ + +## Path export export PATH=$PATH:/snap/bin:$GO_HOME/bin:$GOPATH:/home/senders/.local/bin:$CARGO_HOME/bin ## @@ -66,10 +70,17 @@ function venv { } ## -# Local PC Overrides +# Bootstraps ## +# Git Autocompelte +GIT_AUTOCOMPLETE=/usr/share/git/completion/git-completion.bash +if [ -f $GIT_AUTOCOMPLETE ]; then + source $GIT_AUTOCOMPLETE +fi + # Private Bash Profile for things I don't want in git +# or that should only exist in this SPECIFIC PC setup if [ -f ~/.pc_local_bash_profile ]; then . ~/.pc_local_bash_profile fi -- cgit v1.2.3-54-g00ecf