-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew.sh
84 lines (55 loc) · 1.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
# /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
-c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Install command-line tools using Homebrew.
# Make sure we’re using the latest Homebrew.
brew update
# Upgrade any already-installed formulae.
brew upgrade
# Save Homebrew’s installed location.
BREW_PREFIX=$(brew --prefix)
# extra utils
#https://sourabhbajaj.com/mac-setup/iTerm/tree.html
brew install tree
#https://sourabhbajaj.com/mac-setup/iTerm/ack.html
brew install ack
#https://sourabhbajaj.com/mac-setup/Vim/
brew install vim
# install terminal
#https://sourabhbajaj.com/mac-setup/iTerm/
brew cask install iterm2
#install browsers
brew cask install firefox
# brew cask install firefox-developer-edition
brew cask install google-chrome
# brew cask install google-chrome-canary
# install tools
brew cask install lastpass
brew cask install vlc
brew cask install spotify
brew cask install whatsapp
brew cask install adobe-creative-cloud
brew cask install spectacle
#brew cask install microsoft-teams
#programming
brew cask install postman
brew cask install insomnia
brew cask install docker
brew cask install visual-studio-code
brew cask install cheatsheet
brew cask install texstudio
# fonts
brew tap homebrew/cask-fonts
brew cask install font-fira-code
# sdk
#without cask
brew install maven
brew tap AdoptOpenJDK/openjdk
brew cask install adoptopenjdk14
brew cask install adoptopenjdk14-jre
# brew cask install yarn
# Remove outdated versions from the cellar.
brew cleanup
# install nvm
# https://github.com/nvm-sh/nvm#installing-and-updating
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash