-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_once_install-packages.sh.tmpl
87 lines (81 loc) · 1.1 KB
/
run_once_install-packages.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
#!/bin/bash -e
# shellcheck disable=SC1054,SC1083
{{ if eq .chezmoi.os "darwin" -}}
brew tap 'homebrew/bundle'
brew install \
awscli \
bat \
capacities \
ccat \
certigo \
cfn-flip \
cfn-lint \
coreutils \
cowsay \
diff-so-fancy \
flake8 \
fzf \
gh \
git \
git-absorb \
git-flow \
git-lfs \
gnupg \
gping \
grc \
gron \
hadolint \
hashicorp/tap/terraform-ls \
htop \
httpie \
imagemagick \
ipcalc \
jp2a \
jq \
libgit2 \
moreutils \
mypy \
nmap \
node \
nvim \
openssl \
pinentry-mac \
postgresql \
pre-commit \
proselint \
pwgen \
pyenv-virtualenv \
python3 \
ranger \
rbenv \
readline \
ruby-build \
secretive \
shellcheck \
spaceman-diff \
ssh-copy-id \
tfenv \
tig \
tmux \
trash \
tree \
watch \
wget \
xz \
yarn \
yq \
zsh \
zsh-navigation-tools
# shellcheck disable=SC1009,SC1072,SC1073,SC1056
{{ if eq .environment "home" }}
brew install \
yt-dlp
{{ end -}}
{{ if eq .environment "work" }}
brew install \
colima \
just \
okta-aws-cli
{{ end -}}
{{ end -}}
# vim:ft=jinja2.sh