mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
20 lines
448 B
Fish
20 lines
448 B
Fish
#!/usr/local/bin/fish
|
|
|
|
function mactools
|
|
|
|
function copy --description 'Copy file contents into clipboard'
|
|
cat $argv | pbcopy
|
|
end
|
|
|
|
function brewsearch --description "Install brew plugins"
|
|
set -l inst (brew search | eval "fzf $FZF_DEFAULT_OPTS -m --header='[brew:install]'")
|
|
|
|
if not test (count $inst) = 0
|
|
for prog in $inst
|
|
brew install "$prog"
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|