diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2016-04-02 12:53:33 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-04-02 12:53:33 +0200 |
commit | 7dc22348685fd34b7af74de1edc2cb14ed4e6e88 (patch) | |
tree | 6d8cffcc42c6d6ff57a803fedb5da95c3e6005b1 /.zsh/zshenv/01_path | |
parent | 6e6f191b2e1089d19f0930c03e0b0c8e1f9908e4 (diff) |
zshenv: path: Prefer $HOME/bin over other paths
Diffstat (limited to '.zsh/zshenv/01_path')
-rw-r--r-- | .zsh/zshenv/01_path | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.zsh/zshenv/01_path b/.zsh/zshenv/01_path index e9ec206..9b2e944 100644 --- a/.zsh/zshenv/01_path +++ b/.zsh/zshenv/01_path @@ -33,9 +33,9 @@ path_append() # add the paths here -path_prepend $HOME/bin -path_prepend /opt/local/bin path_prepend /scratch/usr/local/bin +path_prepend /opt/local/bin +path_prepend $HOME/bin path_append /opt/nios2/bin path_append /opt/nios2mmu/x86-linux2/bin |