From: Lukáš Jiřiště Date: Thu, 5 Mar 2026 19:44:01 +0000 (+0100) Subject: Add a Makefile for easier vim setting deployment X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=ec6bee4ac4fd6ddc6476cad77d31217d63f15221;p=dotfiles.git Add a Makefile for easier vim setting deployment --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0ec457a --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: deploy + +deploy: ~/.vimrc ~/.vim/autoload/plug.vim + +~/.vim/autoload/plug.vim: ~/.vim + curl -fLo $@ --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + vim -c PlugInstall -c q -c q + +~/.vimrc: vim/.vimrc + cp $< $@ + +~/.vim: vim/.vim + cp -r $< $@