feat(fish): add shell completion from brew

Changed files
+8
fish
+8
fish/config.fish
··· 41 41 ## FZF 42 42 set -gx FZF_DEFAULT_OPTS "--bind='ctrl-u:preview-half-page-up' \ 43 43 --bind='ctrl-d:preview-half-page-down'" 44 + 45 + # brew shell completion (see: https://docs.brew.sh/Shell-Completion) 46 + if test -d (brew --prefix)"/share/fish/completions" 47 + set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/completions 48 + end 49 + if test -d (brew --prefix)"/share/fish/vendor_completions.d" 50 + set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d 51 + end 44 52 end