6 lines
164 B
Bash
6 lines
164 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# install vim and nvim plug
|
||
|
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
||
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|