-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_once_before_install-packages-darwin.sh.tmpl
107 lines (102 loc) · 1.59 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
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
{{- if eq .chezmoi.os "darwin" -}}
#!/usr/bin/env bash
brew bundle --no-lock --file=/dev/stdin <<EOF
tap "homebrew/bundle"
tap "jimeh/emacs-builds"
tap "homebrew/cask-fonts"
brew "act"
brew "age"
brew "aspell"
brew "autoconf"
brew "automake"
brew "bash"
brew "bat"
brew "pkg-config"
brew "ccache"
brew "cloc"
brew "readline"
brew "llvm"
brew "ccls"
brew "chezmoi"
brew "clang-format"
brew "cmake"
brew "colordiff"
brew "coreutils"
brew "cppcheck"
brew "dos2unix"
brew "doxygen"
brew "gawk"
brew "ghostscript"
brew "epstool"
brew "exiftool"
brew "faac"
brew "fd"
brew "fdk-aac"
brew "flac123"
brew "fzf"
brew "gcc"
brew "git"
brew "global"
brew "gnuplot"
brew "graphviz"
brew "htop"
brew "imagemagick"
brew "ispell"
brew "markdown"
brew "modules"
brew "mp3info"
brew "mpich"
brew "yt-dlp"
brew "mpv"
brew "nnn"
brew "node"
brew "npm"
brew "ocrmypdf"
brew "openssl@3"
brew "pandoc"
brew "pianobar"
brew "prettyping"
brew "pyenv"
brew "[email protected]"
brew "ripgrep"
brew "shellcheck"
brew "shfmt"
brew "stow"
brew "sqlite3"
brew "taglib"
brew "terminal-notifier"
brew "tldr"
brew "tmux"
brew "tree-sitter"
brew "vorbis-tools"
brew "wdiff"
brew "wget"
brew "xpdf"
brew "xz"
brew "zlib"
cask_args appdir: "~/Applications"
cask "font-fira-code-nerd-font"
cask "font-meslo-lg-nerd-font"
cask "adobe-acrobat-reader"
cask "diffusionbee"
cask "emacs-app"
cask "firefox"
cask "gimp"
cask "hammerspoon"
cask "inkscape"
cask "iterm2"
cask "keepassxc"
cask "macfuse"
cask "mactex"
cask "musicbrainz-picard"
cask "paraview"
cask "slack"
cask "visit"
cask "vivaldi"
cask "vlc"
cask "zoom"
cask "zotero"
EOF
brew pin gcc
brew pin mpich
{{ end -}}