forked from fredoliveira/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_once_install-packages.sh.tmpl
More file actions
66 lines (56 loc) · 1.7 KB
/
run_once_install-packages.sh.tmpl
File metadata and controls
66 lines (56 loc) · 1.7 KB
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
#!/bin/sh
# Install homebrew if it doesn't exist yet
if [ -z "$(which brew)" ]; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
# Install packages
brew install zsh
brew install starship
brew install fzf
brew install ripgrep
brew install eza
brew install neovim
brew install fd
#brew install gpg
brew install xcodes
# Install casks
{{ if .casks -}}
brew install --cask 1password
brew install --cask 1password-cli
brew install --cask cleanshot
brew install --cask firefox
brew install --cask github
brew install --cask obsidian
brew install --cask raycast
brew install --cask sf-symbols
brew install --cask sketch
brew install --cask slack
brew install --cask sublime-merge
brew install --cask visual-studio-code
{{ end -}}
# Install fonts
brew tap homebrew/cask-fonts
brew install font-inter
brew install font-cascadia-code-pl
brew install font-caskaydia-cove-nerd-font
brew install font-ia-writer-duo
brew install font-ia-writer-duospace
brew install font-ia-writer-mono
brew install font-ia-writer-quattro
brew install font-new-york
brew install font-sf-pro
# Antidote for zsh
git clone --depth=1 https://github.com/mattmc3/antidote.git ${ZDOTDIR:-~}/.antidote
# Mac App Store apps
brew install mas
mas install 420212497 # Byword
mas install 640199958 # Developer
mas install 1475387142 # Tailscale
# Miscellaneous stuff that may require user input
# Install Logitech drivers for MX master 3
brew tap homebrew/cask-drivers
brew install --cask logitech-options
# fzf shell completion/keybindings setup
/opt/homebrew/opt/fzf/install --all --no-bash --no-fish