diff options
author | Ben Burwell <ben@benburwell.com> | 2019-12-12 16:32:54 -0500 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-12-12 16:32:54 -0500 |
commit | 95601469194dd6d655d76b621934c813df138352 (patch) | |
tree | 51b797827759924369f0e094ec35b4c3bb04d3ff | |
parent | f80661f6886b71a6668cb75d9e0a1eea3d7df5e9 (diff) |
path: don't depend on username
-rw-r--r-- | templates/.zsh/path.zsh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/.zsh/path.zsh b/templates/.zsh/path.zsh index a94870b..d9b60cb 100644 --- a/templates/.zsh/path.zsh +++ b/templates/.zsh/path.zsh @@ -11,8 +11,8 @@ export PATH=$PATH:/usr/bin export PATH=$PATH:/bin export PATH=$PATH:/usr/sbin export PATH=$PATH:/sbin -export PATH=$PATH:/Users/ben/code/bin -export PATH=$PATH:/Users/ben/.bin +export PATH=$PATH:~/code/bin +export PATH=$PATH:~/.bin export PATH=$PATH:/usr/local/go/bin -export PATH=$PATH:/Users/ben/.rvm/bin -export PATH=$PATH:/Users/ben/.vim/bundle/fzf/bin +export PATH=$PATH:~/.rvm/bin +export PATH=$PATH:~/.vim/bundle/fzf/bin |