7 lines
211 B
Bash
7 lines
211 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
||
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||
|
nvim -E -c PlugInstall -c qall
|