mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
10 lines
332 B
Fish
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
|