summaryrefslogtreecommitdiff
path: root/.config/zsh
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-05-22 13:25:13 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-05-22 13:25:13 +0200
commitfa06e9e7f3fb49484ea1fa8f564816b548222e39 (patch)
treee9c16f3e4523fd1b9e34b135b7aa7f08f2f0c267 /.config/zsh
parente4411f54539946fe496097429dbaa2c2afb020b4 (diff)
Add local/bin to search path
Diffstat (limited to '.config/zsh')
-rw-r--r--.config/zsh/exports.zsh3
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"