summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.bash_profile13
1 files changed, 12 insertions, 1 deletions
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