From 688b13c03ced460b5dabb9d1c6919252879e847d Mon Sep 17 00:00:00 2001 From: John Doty Date: Tue, 20 Dec 2022 01:10:58 +0000 Subject: [PATCH] Add .local/bin to path --- .config/fish/config.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 41d46ac..7928def 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -10,6 +10,9 @@ end if test -d ~/.cargo/bin set PATH ~/.cargo/bin $PATH end +if test -d ~/.local/bin + set PATH ~/.local/bin $PATH +end if test -d ~/devtools/buck/bin set PATH $PATH ~/devtools/buck/bin end