From 215898fe7e101f430fdb5c2309e53535f764d272 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 28 Feb 2023 13:26:25 +0000 Subject: [PATCH] Remove dotfiles bin from fish_user_paths --- config/fish/conf.d/local_paths.fish | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/fish/conf.d/local_paths.fish b/config/fish/conf.d/local_paths.fish index b3c29f5d..8d8989c3 100644 --- a/config/fish/conf.d/local_paths.fish +++ b/config/fish/conf.d/local_paths.fish @@ -1,6 +1,4 @@ if status is-interactive 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 $DOTFILES_BIN - > /dev/null 2>&1 || set -g fish_user_paths $fish_user_paths $DOTFILES_BIN end