-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlaptop.local
More file actions
41 lines (34 loc) · 852 Bytes
/
Copy pathlaptop.local
File metadata and controls
41 lines (34 loc) · 852 Bytes
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
#!/bin/sh
brew bundle --file=- <<EOF
brew "watch"
brew "bat"
brew "git-delta"
brew "overmind"
brew "starship"
brew "vips"
brew "php"
brew "composer"
brew "pnpm"
cask "adobe-acrobat-reader"
cask "dbngin"
cask "keybase"
cask "notion"
cask "notion-calendar"
cask "orbstack"
cask "raycast"
cask "tableplus"
cask "zed"
EOF
fancy_echo "Cleaning up old Homebrew formulae ..."
brew cleanup
# Install more programming languages
add_or_update_asdf_plugin "awscli"
add_or_update_asdf_plugin "terraform"
add_or_update_asdf_plugin "elixir" "https://github.com/asdf-vm/asdf-elixir.git"
add_or_update_asdf_plugin "erlang" "https://github.com/asdf-vm/asdf-erlang.git"
add_or_update_asdf_plugin "php" "https://github.com/asdf-community/asdf-php.git"
add_or_update_asdf_plugin "python"
if [ -r "$HOME/.rcrc" ]; then
fancy_echo "Updating dotfiles ..."
rcup
fi