1

Add check for fish_add_path before calling it

This commit is contained in:
Jessie Hildebrandt 2023-02-15 16:32:47 -05:00
parent e2b0c04640
commit ca72852c0f

View File

@ -70,7 +70,10 @@ set fish_key_bindings fish_default_key_bindings
set VIRTUAL_ENV_DISABLE_PROMPT true
fish_add_path -aP ~/.local/bin
# Add '~/.local/bin' using 'fish_add_path' (Only available in Fish 3.2.X and above)
if type fish_add_path &> /dev/null
fish_add_path -aP ~/.local/bin
end
###########
# Aliases #