summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortslil clingman <>2020-11-04 20:26:11 -0500
committertslil clingman <>2020-11-04 20:27:16 -0500
commitc733b0b70eb72b7dbf578a02474eeb2af928f8b3 (patch)
treefc6ec3806bf672c3796c5ef7355cb0251d254ceb
parent5855dd6162f3bbeff7e75cd0246a3f85f6fefd20 (diff)
Slight rearrangement
-rw-r--r--.bash_profile5
-rw-r--r--.bashrc7
2 files changed, 4 insertions, 8 deletions
diff --git a/.bash_profile b/.bash_profile
index 6e2c37f..cc56c0b 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -26,6 +26,9 @@ export LESSHISTFILE="-"
LS_COLORS='rs=0:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:';
export LS_COLORS
+# colored GCC warnings and errors
+export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
+
export GUILE_LOAD_COMPILED_PATH=/usr/local/lib/guile/2.2/site-ccache/
eval "$(stack --bash-completion-script stack)"
@@ -33,7 +36,7 @@ eval "$(stack --bash-completion-script stack)"
umask 077
# SSH split
-SSH_VAULT_VM="vault-keys"
+SSH_VAULT_VM="VMNAME"
if [ "$SSH_VAULT_VM" != "" ]; then
export SSH_AUTH_SOCK=/home/user/.SSH_AGENT_$SSH_VAULT_VM
fi
diff --git a/.bashrc b/.bashrc
index 8179a2e..816622e 100644
--- a/.bashrc
+++ b/.bashrc
@@ -60,10 +60,3 @@ HISTFILESIZE=2000
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# colored GCC warnings and errors
-export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi