some more fixes

This commit is contained in:
Dennis Schoepf 2026-03-05 23:48:30 +01:00
parent 7501302d0c
commit 27866b6837
2 changed files with 5 additions and 5 deletions

View file

@ -192,12 +192,12 @@
setup_homebrew = /* fish */ ''
fish_add_path /opt/homebrew/bin
if test -d (brew --prefix)"/share/fish/completions"
set -p fish_complete_path (brew --prefix)/share/fish/completions
if test -d /opt/homebrew/share/fish/completions
set -p fish_complete_path /opt/homebrew/share/fish/completions
end
if test -d (brew --prefix)"/share/fish/vendor_completions.d"
set -p fish_complete_path (brew --prefix)/share/fish/vendor_completions.d
if test -d /opt/homebrew/share/fish/vendor_completions.d
set -p fish_complete_path /opt/homebrew/share/fish/vendor_completions.d
end
'';
setup_path = /* fish */ ''