Skip to content

Commit

Permalink
Setup Brewfile for homebrew, use it to install github cli
Browse files Browse the repository at this point in the history
In the future I migth rewrite the whole `macos-setup.sh` script to use a
Brewfile
  • Loading branch information
TheKnarf committed Jun 5, 2024
1 parent ebf4376 commit f9bbced
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions os/macos/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# You would normally commit lock-files in projects
# But I'm not sure what the point of a lockfile for Homebrew is
# as far as I know Homebrew can't install older versions of packages
# and it auto updates stuff anyway
#
# So I'm going to keep the file around locally, but gitignore it so that its not commited
Brewfile.lock.json
3 changes: 3 additions & 0 deletions os/macos/Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# Github CLI tool
brew "gh"
2 changes: 2 additions & 0 deletions os/macos/macos-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ brew install git
brew install --cask iTerm2
brew install kitty # The fast, feature-rich, GPU based terminal emulator

brew bundle

# Enviroment
brew install \
z \
Expand Down

0 comments on commit f9bbced

Please sign in to comment.