diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-22 13:25:13 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-22 13:25:13 +0200 |
commit | fa06e9e7f3fb49484ea1fa8f564816b548222e39 (patch) | |
tree | e9c16f3e4523fd1b9e34b135b7aa7f08f2f0c267 | |
parent | e4411f54539946fe496097429dbaa2c2afb020b4 (diff) |
Add local/bin to search path
-rw-r--r-- | .config/zsh/exports.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/zsh/exports.zsh b/.config/zsh/exports.zsh index 3364eb5..dc4c146 100644 --- a/.config/zsh/exports.zsh +++ b/.config/zsh/exports.zsh @@ -1,3 +1,6 @@ +# Adds `~/.local/bin` to $PATH +export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}" + # Uncomment the following line to use case-sensitive completion. CASE_SENSITIVE="true" |