This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-brew.sh
executable file
·67 lines (48 loc) · 1.92 KB
/
install-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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
###############################################################################
# Install Homebrew #
###############################################################################
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
###############################################################################
# Install Homebrew packages #
###############################################################################
# Make sure we’re using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade
# GNU core utilities (those that come with OS X are outdated)
brew install coreutils
brew install moreutils
# GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed
brew install findutils
# Install wget with IRI support
brew install wget
# Install more recent versions of some OS X tools
brew install vim
brew install nano
brew install grep
brew install openssh
brew install screen
brew install git
# fish - User-friendly command-line shell for UNIX-like operating systems
brew install fish
# asdf - Extendable version manager with support for Ruby, Node.js, Erlang & more
brew install asdf
# gh - GitHub command-line tool
brew install gh
# thefuck - Programatically correct mistyped console commands
brew install thefuck
# neovim - Ambitious Vim-fork focused on extensibility and agility
brew install neovim
# htop - Improved top (interactive process viewer)
brew install htop
# gekodriver - WebDriver <-> Marionette proxy
brew install geckodriver
# imagemagick - Tools and libraries to manipulate images in many formats
brew install imagemagick
# zoxide - A faster way to navigate your filesystem
brew install zoxide
# mac - Mac App Store command-line interface
brew install mas
# Remove outdated versions from the cellar
brew cleanup