* add neovim installation to brew install script * clone vimrc to nvimrc * replace syntastic plugin with neomake
36 lines
668 B
Bash
Executable File
36 lines
668 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test ! $(which brew); then
|
|
echo "Installing homebrew"
|
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
fi
|
|
|
|
echo "Installing homebrew packages..."
|
|
|
|
# cli tools
|
|
brew install ack
|
|
brew install tree
|
|
brew install wget
|
|
|
|
# development server setup
|
|
brew install nginx
|
|
brew install dnsmasq
|
|
|
|
# development tools
|
|
brew install git
|
|
brew install hub
|
|
brew install macvim --override-system-vim
|
|
brew install reattach-to-user-namespace
|
|
brew install tmux
|
|
brew install zsh
|
|
brew install highlight
|
|
brew install nvm
|
|
brew install z
|
|
brew install markdown
|
|
|
|
# install neovim
|
|
brew tap neovim/neovim
|
|
brew install --HEAD neovim
|
|
|
|
exit 0
|