-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
58 lines (56 loc) · 1.73 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
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install zsh zsh-completions
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
brew install wget
brew install vim
brew install node
brew install git
brew install cask
brew install awsebcli
brew install [email protected]
brew link --force --overwrite [email protected]
pecl install xdebug
cat > /usr/local/etc/php/7.3/conf.d/ext-xdebug.ini <<EOF
[xdebug]
xdebug.remote_autostart=1
xdebug.remote_port=9001
xdebug.remote_host=127.0.0.1
xdebug.remote_connect_back=1
xdebug.remote_enable=1
xdebug.idekey=PHPSTORM
EOF
brew install composer
brew install postgresql
brew install redis
brew install htop
brew cask install virtualbox
brew cask install postman
brew cask install vagrant
brew cask install google-chrome
brew cask install phpstorm
brew cask install iterm2
brew cask install rocket-chat
brew cask install microsoft-teams
brew cask install macpass
brew cask install helium
brew cask install spotify
brew cask install flux
brew cask install firefox
brew cask install sublime-text
brew cask install onedrive
brew cask install skitch
brew cleanup
brew doctor
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
cd ~/.vim/bundle
git clone https://github.com/tpope/vim-sensible.git
git clone https://github.com/tpope/vim-fugitive.git
git clone --depth=1 https://github.com/vim-syntastic/syntastic.git
ln -s ~/OneDrive/.aws ~/.aws
ln -s ~/OneDrive/.ssh ~/.ssh
ln -s ~/OneDrive/.vimrc ~/.vimrc
rm -f ~/.zshrc && ln -s ~/OneDrive/.zshrc ~/.zshrc
rm -f ~/.zsh_history && ln -s ~/OneDrive/.zsh_history ~/.zsh_history