Skip to content

Instantly share code, notes, and snippets.

@codyjroberts
Last active October 22, 2016 18:48
Show Gist options
  • Save codyjroberts/163806270a7d6b9df8f65c3a2caf1abe to your computer and use it in GitHub Desktop.
Save codyjroberts/163806270a7d6b9df8f65c3a2caf1abe to your computer and use it in GitHub Desktop.
#!/bin/sh
sudo apt-get update
yes | sudo apt-get install software-properties-common python-dev python-pip python3-dev python3-pip curl git
yes | sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get update
yes | sudo apt-get install neovim
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
curl -fLo ~/.config/nvim/init.vim --create-dirs \
https://gist.githubusercontent.com/codyjroberts/2b873ee0bdb27e8192aa1e5836761f3b/raw/9afe09da3137ba56c030fc3ab0c1ac70f612092d/init.vim
yes | pip3 install neovim
nvim -c "PlugInstall"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment