Last active
April 18, 2017 04:51
-
-
Save AGhost-7/e48a319bdf9e3a420622bc0bdaea0044 to your computer and use it in GitHub Desktop.
Install my basic neovim setup on OSX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install neovim | |
curl --create-dirs -o ~/.config/nvim/init.vim \ | |
https://raw.githubusercontent.com/AGhost-7/dotfiles/master/init.vim | |
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
nvim +PlugInstall +qall | |
git clone https://github.com/powerline/fonts.git ~/fonts | |
(cd ~/fonts; ./install.sh) | |
rm -rf ~/fonts | |
# Then update your profile to use a font with "powerline" in its name. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment