Remove dotfiles bin from fish_user_paths

This commit is contained in:
Evie Litherland-Smith 2023-02-28 13:26:25 +00:00
parent 052404bba5
commit 215898fe7e

View file

@ -1,6 +1,4 @@
if status is-interactive if status is-interactive
set -l LOCAL_BIN "$HOME/.local/bin" set -l LOCAL_BIN "$HOME/.local/bin"
set -l DOTFILES_BIN "$HOME/.dotfiles/bin"
echo $fish_user_paths | grep -i $LOCAL_BIN - > /dev/null 2>&1 || set -g fish_user_paths $fish_user_paths $LOCAL_BIN echo $fish_user_paths | grep -i $LOCAL_BIN - > /dev/null 2>&1 || set -g fish_user_paths $fish_user_paths $LOCAL_BIN
echo $fish_user_paths | grep -i $DOTFILES_BIN - > /dev/null 2>&1 || set -g fish_user_paths $fish_user_paths $DOTFILES_BIN
end end