-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
64 lines (59 loc) · 1.44 KB
/
Brewfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
tap "homebrew/bundle"
tap "homebrew/command-not-found"
# Core formulae
# NOTE: homebrew/core is tapped by default. There's no need to tap it.
# Tapping it will make the script take a very long time to run.
brew "asdf"
brew "bash"
brew "bash-completion@2"
brew "direnv"
brew "ffmpeg"
brew "fzf"
brew "gh"
brew "git"
brew "htop"
brew "neofetch"
brew "pandoc"
brew "rsync"
brew "shellcheck"
brew "starship"
brew "stow"
brew "tree"
brew "wget"
brew "youtube-dl"
brew "zoxide"
brew "zsh"
# macOS-only formulae
brew "m4" if OS.mac?
brew "coreutils" if OS.mac?
brew "gawk" if OS.mac?
brew "gnu-sed" if OS.mac?
# Fonts
tap "homebrew/cask-fonts" if OS.mac?
tap "homebrew/linux-fonts" if OS.linux?
cask "font-hack-nerd-font"
brew "font-hack-nerd-font" if OS.linux?
# Casks
# NOTE: These are special-cased to only be installed on macOS.
# No need for `if OS.mac?` here.
cask "1password"
cask "1password-cli"
cask "blackhole-2ch"
cask "firefox"
cask "google-chrome"
cask "ghostty"
cask "monitorcontrol"
cask "scroll-reverser"
cask "spotify"
cask "visual-studio-code"
cask "zoom"
# Mac App Store apps
# NOTE: These are special-cased to only be installed on macOS.
# No need for `if OS.mac?` here.
# NOTE: The `mas` formula is installed automatically when a `mas` entry
# is installed.
mas "1Password for Safari", id: 1569813296
mas "Amphetamine", id: 937984704
mas "Color Picker", id: 1545870783
mas "Speedtest", id: 1153157709
mas "WhatsApp", id: 1147396723