Skip to content

Commit

Permalink
added taps on top
Browse files Browse the repository at this point in the history
  • Loading branch information
linkarzu committed Jan 21, 2024
1 parent 0dfc55d commit daf6adf
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 6 deletions.
6 changes: 6 additions & 0 deletions brew/00-base/Brewfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Filename: ~/github/dotfiles-public/brew/00-base/Brewfile
# https://github.com/linkarzu/dotfiles-public/blob/main/brew/00-base/Brewfile

# Adding taps (repos) on top as I was getting errors
tap "homebrew/bundle"
tap "homebrew/services"
tap "jesseduffield/lazygit"
tap "homebrew/cask-fonts"

brew "wget"
# coreutils includes ls with colors, not needed since I now use eza
# brew "coreutils"
Expand Down
17 changes: 13 additions & 4 deletions brew/10-essential/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@
# https://github.com/linkarzu/dotfiles-public/blob/main/brew/10-essential/Brewfile

# Best editor of all times Neovim

# Adding taps (repos) on top
tap "homebrew/bundle"
tap "homebrew/services"
tap "jesseduffield/lazygit"
tap "homebrew/cask-fonts"

# I'll install the following fonts from neovim script
# tap "homebrew/cask-fonts"
# cask "font-meslo-lg-nerd-font"
cask "font-meslo-lg-nerd-font"

brew "neovim"
brew "gnu-sed"
# This one errors out, so install it from nvim script
# brew "jesseduffield/lazygit/lazygit"
# brew "jesseduffield/lazygit/lazygit" errored out
# So adding the tap on the top to see if it makes a difference
# Otherwise, its installed by the neovim script
brew "jesseduffield/lazygit/lazygit"
brew "ripgrep"
brew "fd"
# Used to check if specific font packages are installed
Expand Down
12 changes: 10 additions & 2 deletions brew/15-nice-to-haves/Brewfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# Random tools I normally use

# Adding taps (repos) on top
tap "homebrew/bundle"
tap "homebrew/services"
tap "jesseduffield/lazygit"
tap "homebrew/cask-fonts"

brew "expect"
brew "mtr"
# I use smartmontools to monitor disk health
brew "smartmontools"
brew "tcptraceroute"
brew "telnet"
# This errors out, so I install it from the yabai script
# brew "koekeishiya/formulae/yabai"
cask "beardedspice"
cask "betterdisplay"
cask "google-chrome"
Expand All @@ -17,6 +21,10 @@ cask "microsoft-remote-desktop"
cask "obsidian"
cask "raycast"
cask "setapp"

# This errored out, I prefer to install it from the yabai script
# brew "koekeishiya/formulae/yabai"

# Will install wineskin later on when needed, it errors out if part of my script
# cask "wineskin"

Expand Down
6 changes: 6 additions & 0 deletions brew/20-optional/Brewfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Adding taps (repos) on top
tap "homebrew/bundle"
tap "homebrew/services"
tap "jesseduffield/lazygit"
tap "homebrew/cask-fonts"

# Files that I might install
brew "switchaudio-osx"
cask "brave-browser"
Expand Down

0 comments on commit daf6adf

Please sign in to comment.