-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·74 lines (54 loc) · 1.66 KB
/
install.sh
File metadata and controls
executable file
·74 lines (54 loc) · 1.66 KB
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
#!/bin/bash
cd $HOME
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
xcode-select --install
# install brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap homebrew/versions
brew update
brew upgrade —all
# brew cleanup
# brew prune
brew install dockutil
brew install node
brew install vim
# install grip for vim markdown-preview plugin
brew install grip
# install brew cask
brew tap caskroom/cask
brew install brew-cask
# install applications using cask
brew cask install 1password
brew cask install adobe-creative-cloud
brew cask install evernote
brew cask install firefox
brew cask install google-chrome
# brew cask install java
# brew cask install omnigraffle
brew cask install slack
brew cask install spectacle
brew cask install virtualbox
# brew cask install skype
brew cask install google-drive-file-stream
brew cask install filezilla
brew cask install docker
brew cask install sdformatter
brew cask install postman
brew cask install visual-studio-code
# design apps
# brew cask install sketch
# add git aliases
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global core.editor $(which vim)
open '/usr/local/Caskroom/adobe-creative-cloud/latest/Creative Cloud Installer.app'
# dock
# Set the icon size of Dock items to 36 pixels
defaults write com.apple.dock tilesize -int 36
# setup dock using “dockutil”
dockutil --no-restart --remove all
dockutil --no-restart --add "/Applications/Google Chrome.app"
dockutil --no-restart --add "/Applications/Firefox.app"
killall Dock