mirror of
https://github.com/lloeki/vimfiles.git
synced 2025-12-06 05:24:39 +01:00
7 lines
195 B
Bash
Executable file
7 lines
195 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ $(pwd) = "$HOME/.vim" ] || ln -sfn "$(pwd)" "$HOME/.vim"
|
|
ln -sfn "$HOME/.vim/gvimrc" "$HOME/.gvimrc"
|
|
ln -sfn "$HOME/.vim/vimrc" "$HOME/.vimrc"
|
|
|
|
vim -u plugged.vim +PlugInstall +qall
|