diff options
author | Alan Pearce | 2020-06-16 17:36:51 +0200 |
---|---|---|
committer | Alan Pearce | 2020-06-16 17:36:51 +0200 |
commit | 25e085ea010118b9a73f385f9c6dc8dd1b06dc8f (patch) | |
tree | fcc2e1bf46f8b5e83889164ae8452de8e7c5f890 /user | |
parent | 986e34637a0b15e7c02ebef14f73585583a5bcbd (diff) | |
download | nixfiles-25e085ea010118b9a73f385f9c6dc8dd1b06dc8f.tar.lz nixfiles-25e085ea010118b9a73f385f9c6dc8dd1b06dc8f.tar.zst nixfiles-25e085ea010118b9a73f385f9c6dc8dd1b06dc8f.zip |
zsh: prefer user custom bin folder in path
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/zsh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index d5bdaf5c..b838e2bc 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -238,7 +238,7 @@ in envExtra = '' if [[ ''${path[(I)$HOME/.local/bin ]} ]] then - path+=($HOME/.local/bin) + path=($HOME/.local/bin $path) fi if [[ ''${path[(I)$HOME/go/bin ]} ]] |