mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-10 18:16:29 +00:00
24 lines
319 B
Makefile
24 lines
319 B
Makefile
.PHONY: default
|
|
default: install
|
|
|
|
.PHONY: install
|
|
install:
|
|
sh ./vim-sync-append.sh
|
|
|
|
.PHONY: update
|
|
update:
|
|
sh ./update-plugins.sh
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
rm ~/.vimrc
|
|
rm ~/.nvimrc
|
|
rm -fr ~/.vim
|
|
rm -fr ~/.nvim
|
|
rm -fr ~/.config/nvim
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -fr ./vim/plugged
|
|
rm -fr ./vim/autoload/plug.vim
|