dotfiles/fish.configlink/functions/brewsearch.fish

10 lines
332 B
Fish
Raw Normal View History

function brewsearch --description "Install brew plugins"
2021-05-08 21:39:52 +00:00
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