summaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-03-04 17:44:34 -0500
committerJesse Luehrs <doy@tozt.net>2018-03-06 02:44:43 -0500
commitfa1dfa212540584bbf2cf07e132129bcd4f09843 (patch)
tree674902622d88f3ae9be4d8f28633fd3e97fd0536 /bashrc
parent1e69a607f2b211772839737fde29152ab40ca3ec (diff)
downloadconf-fa1dfa212540584bbf2cf07e132129bcd4f09843.tar.gz
conf-fa1dfa212540584bbf2cf07e132129bcd4f09843.zip
my local bin directories should take precedence
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/bashrc b/bashrc
index afc77ba..f4caa0b 100644
--- a/bashrc
+++ b/bashrc
@@ -1,13 +1,13 @@
-# environment {{{
-export PATH="/usr/share/git/diff-highlight:${HOME}/.bin/local:${HOME}/.bin:/usr/lib/ccache/bin:$PATH"
-[ -f "$HOME/.sh/env" ] && source $HOME/.sh/env
-# }}}
# language environments {{{
test -f $HOME/perl5/perlbrew/etc/bashrc && source $HOME/perl5/perlbrew/etc/bashrc
test -f $HOME/python/bin/activate && source $HOME/python/bin/activate
type rbenv > /dev/null 2>&1 && eval "$(rbenv init -)"
test -d $HOME/.cargo/bin && export PATH="$HOME/.cargo/bin:$PATH"
# }}}
+# environment {{{
+export PATH="/usr/share/git/diff-highlight:${HOME}/.bin/local:${HOME}/.bin:/usr/lib/ccache/bin:$PATH"
+[ -f "$HOME/.sh/env" ] && source $HOME/.sh/env
+# }}}
# Test for an interactive shell. {{{
# There is no need to set anything past this point for scp and rcp, and it's
# important to refrain from outputting anything in those cases.