Last active
January 22, 2019 20:20
-
-
Save gf3/3d90fd82deaa4cab19fb8d817a370e27 to your computer and use it in GitHub Desktop.
Neovim config setup
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
#!/bin/sh | |
# Install: | |
# curl -fsL https://gist.githubusercontent.com/gf3/3d90fd82deaa4cab19fb8d817a370e27/raw/setup.sh | sh | |
# Directories | |
mkdir -p ~/.local/share/nvim/{backup,swap,undo} | |
# Config | |
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
curl -fLo ~/.config/nvim/init.vim --create-dirs https://raw.githubusercontent.com/gf3/dotfiles/master/.config/nvim/init.vim | |
# Install plugins | |
nvim +PlugInstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment