14 lines
414 B
Bash
14 lines
414 B
Bash
|
|
# TODO have to clarify how to set the location of the .vimrc file
|
|
|
|
# create symbolic link to the .vimrc
|
|
mkdir -p ~/.config/nvim
|
|
ln -s ~/.vimrc ~/.config/nvim/init.vim
|
|
|
|
# install vim-plug
|
|
sh -c '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'
|
|
|
|
# TODO have to make sure to install the plugins
|
|
|