summary refs log tree commit diff
path: root/.zshrc
diff options
context:
space:
mode:
authorJune McEnroe <curtis.mcenroe@adgear.com>2017-01-20 11:52:04 -0500
committerJune McEnroe <curtis.mcenroe@adgear.com>2017-01-20 11:52:04 -0500
commit853f4fc68304b4dc2fcab1192760d7a5deb9ed61 (patch)
tree5f63d6b7fa03a9eb313d12ef25d36d32f95a3e79 /.zshrc
parentSwitch back to 10-minute increments in clock (diff)
downloadsrc-853f4fc68304b4dc2fcab1192760d7a5deb9ed61.tar.gz
src-853f4fc68304b4dc2fcab1192760d7a5deb9ed61.zip
Set PATH manually
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc14
1 files changed, 13 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc
index b257d9fa..52087347 100644
--- a/.zshrc
+++ b/.zshrc
@@ -10,7 +10,19 @@ autoload -Uz colors && colors
 bindkey -v
 KEYTIMEOUT=1
 
-PATH=$PATH:~/.bin
+OLDPATH=$PATH
+path=(
+  /sbin
+  /bin
+  /usr/local/sbin
+  /usr/local/bin
+  /usr/sbin
+  /usr/bin
+  ~/.bin
+  ~/.cargo/bin
+  ~/.gem/bin
+)
+
 export PAGER=less MANPAGER=less EDITOR=vim GIT_EDITOR=vim
 type nvim > /dev/null &&
   MANPAGER=manpager EDITOR=nvim GIT_EDITOR=nvim && alias vim=nvim