dotfiles/fish.configlink/functions/brewsearch.fish
2021-05-08 17:39:52 -04:00

10 lines
332 B
Fish

function brewsearch --description "Install brew plugins"
set -l inst (brew formulae | eval "fzf $FZF_DEFAULT_OPTS -m --header='[press ctrl-i for info, enter to install]' --bind 'ctrl-i:preview(brew info {})'")
if not test (count $inst) = 0
for prog in $inst
brew install "$prog"
end
end
end