-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_once_before_install-packages-darwin.sh.tmpl
67 lines (63 loc) · 1.24 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
{{- if (eq .chezmoi.os "darwin") -}}
#!/bin/bash
brew bundle --no-lock --file=/dev/stdin <<EOF
# day to day driver deps
brew "koekeishiya/formulae/yabai"
brew "koekeishiya/formulae/skhd"
brew "gnupg"
brew "zellij"
brew "tmux"
brew "emacs"
brew "neovim"
brew "zsh"
brew "pure"
brew "asciinema"
brew "agg"
# for tmux copy and paste
brew "reattach-to-user-namespace"
# file finder
brew "fd"
brew "fzf"
# replacement for cat
brew "bat"
# markdown preview
brew "glow"
# jump / z written in Rust: https://github.com/ajeetdsouza/zoxide
brew "zoxide"
# terminal file browser
brew "yazi"
# github cli
brew "gh"
brew "git-delta"
# language specific libs
## Postgres
brew "libpq"
## JavaScript
brew "node"
brew "fnm"
# Experimental stuff
cask "alacritty"
brew "slides"
brew "grpc"
brew "protobuf"
tap "bufbuild/buf"
brew "buf"
brew "aws-vault"
brew "k9s"
brew "act"
# Language spell checking
brew "ispell"
# Rust stuff
brew "rust-analyzer"
brew "sops"
brew "kubectl"
brew "kustomize"
cask "1password-cli"
brew "go-task"
cask "aerospace"
EOF
brew install knqyf263/pet/pet
brew link --force libpq
# curl -Ls https://raw.githubusercontent.com/jarun/nnn/master/plugins/getplugs | sh
# sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
{{ end -}}