-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
executable file
·53 lines (43 loc) · 1.06 KB
/
brew.sh
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
#!/usr/bin/env bash
set -e
# Install brew
command -v brew || /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Freshen brew
brew update
brew upgrade
# Essentials
# brew install ctags
brew install fzf && \
"$(brew --prefix)"/opt/fzf/install --xdg --all
brew install git
brew install gpg
brew install pinentry-mac
brew install htop
brew install shellcheck
# Manage dotfiles
brew install stow
# Manage my runtimes
# brew cask install vagrant
brew install rbenv
brew install nodenv
# Manage my apps
brew install mas
# Productivity
brew install tmux
brew install tmate
# brew install hub
brew install gh
brew install tree
brew install ripgrep
# Web
# brew install ievms
# GUI
brew install --cask macvim || true # "... || true" -> continue on error
brew install --cask rectangle || true
brew install --cask google-chrome || true
brew install --cask 1password || true
# brew cask install virtualbox || true # requires sudo
# brew cask install virtualbox-extension-pack || true
# brew cask install licecap || true
# Finally
brew cleanup