-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrew.sh
More file actions
executable file
·57 lines (39 loc) · 972 Bytes
/
brew.sh
File metadata and controls
executable file
·57 lines (39 loc) · 972 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
42
43
44
45
46
47
48
49
50
51
52
53
#Update brew
brew update
# Upgrade any already-installed formulae
brew upgrade
brew cask update
# Installing commum softwares
brew cask install iterm2
brew cask install google-chrome-canary
brew cask install 1password
brew cask install vlc
brew cask install slack
brew cask install telegram-desktop
brew cask install spectacle
# Installing Fira Code font
brew tap caskroom/fonts
brew cask install font-fira-code
# Installing commum cli tools
brew install git
brew install tree
brew install npm
brew install node
brew install zsh
brew install figlet
sudo brew cask install postgres
brew install svn
brew install tig
brew install mongo
# Installing Docker and Dependences
sudo brew cask install virtualbox #Executing as sudo
brew link --overwrite docker
brew install docker
brew install boot2docker
#Setting Java
brew cask install java7
brew install jenv
brew install diff-so-fancy
#Add zshell autocomplete
brew install zsh-autosuggestions
brew cleanup