forked from velomash/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 9
/
install-programs.sh
executable file
·47 lines (38 loc) · 1.13 KB
/
install-programs.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
#!/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
# upgrade bash
brew install bash
brew install bash-completion
brew install homebrew/completions/brew-cask-completion
# Install wget with IRI support
brew install wget --with-iri
# Install more recent versions of some OS X tools
brew install vim --with-override-system-vi
brew install ripgrep
# Install other useful binaries
brew install ffmpeg --with-libvpx
brew install fzf
brew install git
brew install gnupg
brew install imagemagick --with-webp
brew install node # This installs `npm` too using the recommended installation method
brew install rename
brew install svgo
brew install the_silver_searcher
brew install terminal-notifier
brew install awscli
# Remove outdated versions from the cellar
brew cleanup
npm install -g prettier
npm install -g ngrok
npm install -g typescript
npm install -g javascript-typescript-langserver