-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·66 lines (52 loc) · 2.24 KB
/
install.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
###############################################################################
# Installs cool command-line tools using Homebrew #
###############################################################################
# Make sure we’re using the latest Homebrew.
brew update
# Upgrade any already-installed formulae.
brew upgrade
# Developer tools and frameworks
brew install yarn
brew install mas
brew install git
brew install git-lfs
brew install ffmpeg
brew install gh
brew install fzf
brew install fnm
# Remove outdated versions from the cellar.
brew cleanup
###############################################################################
# Installs some nice native apps with Homebrew Cask #
###############################################################################
brew install --cask google-drive
brew install --cask dropbox
brew install --cask iterm2
brew install --cask visual-studio-code
brew install --cask figma
brew install --cask slack
brew install --cask google-chrome
brew install --cask spotify
brew install --cask notion
brew install --cask zoom
brew install --cask messenger
brew install --cask todoist
###############################################################################
# Install tools from Yarn #
###############################################################################
yarn global add firebase-tools
yarn global add netlify-cli
yarn global add surge
###############################################################################
# Install software from the Mac App Store #
###############################################################################
mas lucky "Gifski Convert videos to GIFs"
###############################################################################
# Install Oh My Zsh #
###############################################################################
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Symlink the files to ~
ln -is ~/code/dotfiles/.zshrc ~/.zshrc
ln -is ~/code/dotfiles/.gitignore ~/.gitignore
ln -is ~/code/dotfiles/.gitconfig ~/.gitconfig
source ~/.zshrc