Add to ~/.Brewfile
on install
#163
-
I have a global Whenever I install something new, it usually goes something like this:
Is there a way to do this in one step, something like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
One thing that may make your life easier: If that's not what you're looking for, I could see a Since the Hope that's helpful |
Beta Was this translation helpful? Give feedback.
One thing that may make your life easier:
brew bundle dump --global
will automatically write all your currently installed formulae/casks/etc. to~/.Brewfile
, saving you the manual edit step (assuming you want all of your currently installed formulae in the brewfile).If that's not what you're looking for, I could see a
brew bundle add <formula>
andbrew bundle remove <formula>
being useful. This would belong in the Homebrew/homebrew-bundle repo. If you want feedback on the idea before spending time implementing it, you should open an issue there to get maintainer feedback (not sure how many of the folks who work onbrew bundle
follow these discussions so you'll probably get better feedbac…