Skip to content

Instantly share code, notes, and snippets.

@tomsiwik
Last active January 30, 2019 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomsiwik/6cf8d8d4e6a0d355186e1b8735b549d8 to your computer and use it in GitHub Desktop.
Save tomsiwik/6cf8d8d4e6a0d355186e1b8735b549d8 to your computer and use it in GitHub Desktop.
Brew, zsh, tmux, neovim install
#!/bin/sh
# Install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install packages
brew tap sambadevi/powerlevel9k
brew install neovim tmux zsh powerlevel9k
# zsh setup (todo: install iterm2 and default to zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
curl https://gist.githubusercontent.com/tomsiwik/accc5c324a8d37d5862c1f97e26723a1/raw > ~/.zshrc
# tmux config
cd
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .
# vim config
curl https://gist.githubusercontent.com/tomsiwik/892f9b5aa3da6dd35f40f500b469bd89/raw > ~/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment