-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_once_before_install-packages-darwin.sh.tmpl
73 lines (70 loc) · 1.23 KB
/
run_once_before_install-packages-darwin.sh.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
{{- if (eq .chezmoi.os "darwin") -}}
#!/bin/bash
brew bundle --no-lock --file=/dev/stdin <<EOF
tap "d12frosted/emacs-plus"
tap "hashicorp/tap"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "homebrew/cask-versions"
tap "homebrew/core"
brew "bitwarden-cli"
brew "python@3.9"
brew "emacs", link: false
brew "cask"
brew "chezmoi"
brew "direnv"
brew "git"
brew "pinentry"
brew "gnupg"
brew "golangci-lint"
brew "gopls"
brew "pango"
brew "graphviz"
brew "grep"
brew "helm"
brew "imagemagick"
brew "isync"
brew "jq"
brew "kind"
brew "kubectx"
brew "kustomize"
brew "libgccjit"
brew "libvterm"
brew "libxaw"
brew "make"
brew "minikube"
brew "mu"
brew "pinentry-mac"
brew "poetry"
brew "pre-commit"
brew "pyenv"
brew "pyenv-virtualenv"
brew "ripgrep"
brew "starship"
brew "tfenv"
brew "yq"
brew "zlib"
brew "d12frosted/emacs-plus/emacs-plus@29", args: ["with-spacemacs-icon"]
brew "hashicorp/tap/terraform-ls"
cask "arc"
cask "bitwarden"
cask "copilot"
cask "discord"
cask "docker"
cask "flux"
cask "font-iosevka"
cask "font-iosevka-nerd-font"
cask "google-cloud-sdk"
cask "logitech-options"
cask "nordvpn"
cask "obsidian"
cask "rectangle"
cask "signal"
cask "slack"
cask "spotify"
cask "steam"
cask "telegram"
cask "vscodium"
EOF
{{ end -}}