-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmacos.setup.sh
More file actions
executable file
·39 lines (31 loc) · 854 Bytes
/
macos.setup.sh
File metadata and controls
executable file
·39 lines (31 loc) · 854 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
#!/bin/bash
# Install xcode command-line tools
xcode-select --install
# Make sure we’re using the latest Homebrew
brew update
brew upgrade
# GNU core utilities (those that come with OS X are outdated)
brew install coreutils
brew install moreutils
brew install findutils
brew install gnu-sed --with-default-names
# @TODO Install oh-my-zsh and plugins
# Install wget with IRI support
brew install wget --with-iri
# Install more recent versions of some OS X tools
brew install neovim
brew install ripgrep
# Install other useful binaries
brew install ffmpeg --with-libvpx
brew install fzf
# brew install grep
brew install git
brew install gnupg
brew install imagemagick --with-webp
brew install rename
brew install the_silver_searcher
brew install awscli
brew install gh
brew install openssl
# Remove outdated versions from the cellar
brew cleanup