-
Notifications
You must be signed in to change notification settings - Fork 1
/
dot_Brewfile.tmpl
107 lines (97 loc) · 1.65 KB
/
dot_Brewfile.tmpl
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
cask_args appdir: "/Applications"
tap "homebrew/bundle"
brew "ack"
brew "antidote"
brew "asdf"
brew "aspell"
brew "bat"
brew "broot"
brew "chezmoi"
brew "coreutils"
brew "direnv"
brew "diskonaut"
brew "duf"
brew "dust"
brew "eza"
brew "fd"
brew "fzf"
brew "gh"
brew "git"
brew "git-delta"
brew "git-lfs"
brew "go"
brew "go-task"
brew "golangci-lint"
brew "gron"
brew "gum"
brew "hadolint"
brew "httpie"
brew "jq"
brew "lesspipe"
brew "m-cli"
brew "mas"
brew "mkcert"
brew "nss"
brew "pre-commit"
brew "procs"
brew "reattach-to-user-namespace"
brew "readline"
brew "ripgrep"
brew "sd"
brew "shellcheck"
brew "starship"
brew "tflint"
brew "the_silver_searcher"
brew "tldr"
brew "vim"
brew "wget"
brew "yq"
brew "zsh-completions"
cask "1password"
cask "1password-cli"
cask "aldente"
cask "docker"
cask "elgato-camera-hub"
cask "elgato-control-center"
cask "elgato-stream-deck"
cask "elgato-wave-link"
cask "firefox"
cask "gpg-suite-no-mail"
cask "notion"
cask "tailscale"
cask "visual-studio-code"
cask "yubico-authenticator"
# Fonts
cask "font-fira-code-nerd-font"
# App Store
mas "Pages", id: 409201541
mas "Keynote", id: 409183694
mas "Numbers", id: 409203825
{{ if .isWork -}}
# Work
tap "hashicorp/tap"
brew "act"
brew "actionlint"
brew "awscli"
brew "chart-testing"
brew "cosign"
brew "dotenv-linter"
brew "git-cliff"
brew "goreleaser"
brew "helm"
brew "mockery"
brew "terraform-docs"
brew "trivy"
brew "hashicorp/tap/packer"
cask "slack"
cask "zoom"
cask "tableplus"
cask "tuple"
{{- else -}}
# Personal
cask "bambu-studio"
cask "Discord"
cask "guitar-pro"
{{- end }}
localbrew = "#{Dir.home}/.Brewfile.local"
instance_eval(File.read(localbrew)) if File.exist?(localbrew)