summaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authorSteph Enders <steph@senders.io>2023-04-01 10:17:27 -0400
committerSteph Enders <steph@senders.io>2023-04-01 10:17:27 -0400
commite7e55fbfe688edc7ad8e2f273abd66be7ef54c19 (patch)
tree9005cdc326ec036cb3ddde2e513d70d82c1e2155 /.bash_profile
parent1b73c0f3c70d0b0431cc053fab21b680c52f1999 (diff)
Add back git-completion
Diffstat (limited to '.bash_profile')
-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