summary refs log tree commit diff
path: root/.zshrc
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-01-20 11:52:04 -0500
committerJune McEnroe <june@causal.agency>2017-01-20 11:52:04 -0500
commit0492b0044f81d7df3e61d5ef18c8e8f27f2218fd (patch)
tree686d649afe613b2d70d74c5c6a3dfc42662f3b8f /.zshrc
parentSwitch back to 10-minute increments in clock (diff)
downloadsrc-0492b0044f81d7df3e61d5ef18c8e8f27f2218fd.tar.gz
src-0492b0044f81d7df3e61d5ef18c8e8f27f2218fd.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