summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-01-16 06:38:25 -0500
committerJesse Luehrs <doy@tozt.net>2017-01-21 06:37:31 -0500
commit7b5eaece5605d6fe8e8b3031b30e9493f167e09d (patch)
treedebbb16e82644c974f1f1905dc5d806c79d2e7b8
parent12829c16525fd8b769ad16a1cffae0477f207272 (diff)
downloadconf-7b5eaece5605d6fe8e8b3031b30e9493f167e09d.tar.gz
conf-7b5eaece5605d6fe8e8b3031b30e9493f167e09d.zip
move PATH setting out of .env
-rw-r--r--bashrc1
-rw-r--r--env1
-rw-r--r--zshrc1
3 files changed, 2 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index 7d680eb..18dbd27 100644
--- a/bashrc
+++ b/bashrc
@@ -1,4 +1,5 @@
# environment {{{
+export PATH="/usr/share/git/diff-highlight:${HOME}/.bin/nethack:${HOME}/.bin:/usr/lib/ccache/bin:$PATH"
[ -f "$HOME/.env" ] && source $HOME/.env
# }}}
# Test for an interactive shell. {{{
diff --git a/env b/env
index 09519ec..95791be 100644
--- a/env
+++ b/env
@@ -1,5 +1,4 @@
export GPG_TTY=`tty`
-export PATH="/usr/share/git/diff-highlight:${HOME}/.bin/nethack:${HOME}/.bin:/usr/local/sbin:/usr/local/bin:/usr/lib/ccache/bin:$PATH"
export MPD_HOST=bishamon
export MANPAGER="${HOME}/.bin/vimmanpager"
export PERLDOC_PAGER="${HOME}/.bin/vimmanpager"
diff --git a/zshrc b/zshrc
index 49fa869..8e91ea8 100644
--- a/zshrc
+++ b/zshrc
@@ -1,6 +1,7 @@
# environment {{{
# not using .zshenv, because it runs before /etc/profile, and /etc/profile
# tends to hard-set $PATH and such
+export PATH="/usr/share/git/diff-highlight:${HOME}/.bin/nethack:${HOME}/.bin:/usr/lib/ccache/bin:$PATH"
[ -f "$HOME/.env" ] && source $HOME/.env
# }}}
# Change the window title of X terminals {{{