2019-04-14 07:26:21 +00:00
|
|
|
SRC_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
2019-04-14 23:04:51 +00:00
|
|
|
TARGET_DIR := ~/.vim
|
2019-04-27 22:21:00 +00:00
|
|
|
PLUG_URL := https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
PLUG_PATH := $(SRC_DIR)/autoload/plug.vim
|
|
|
|
|
|
|
|
include ../lib/shared.mk
|
2019-04-14 07:26:21 +00:00
|
|
|
|
|
|
|
install: | init update
|
|
|
|
|
|
|
|
init:
|
2020-03-09 17:30:45 +00:00
|
|
|
if (( $$+commands[vim] )) ; then
|
|
|
|
$(report) header "Setting up vim"
|
|
|
|
$(mk_link) $(SRC_DIR) $(TARGET_DIR)
|
|
|
|
$(mk_link) $(SRC_DIR)/vimrc ~/.vimrc
|
|
|
|
else
|
|
|
|
$(report) warn "cannot find vim?"
|
|
|
|
fi
|
2019-04-14 07:26:21 +00:00
|
|
|
|
|
|
|
update:
|
2020-03-09 17:30:45 +00:00
|
|
|
if (( $$+commands[vim] )) ; then
|
|
|
|
$(report) header "Upgrading vim"
|
|
|
|
curl -fsLo $(PLUG_PATH) $(PLUG_URL) \
|
|
|
|
; $(report) "vim plug setup"
|
|
|
|
vim +PlugInstall +PlugUpdate +qall \
|
|
|
|
; $(report) "downloading/updating plugins"
|
|
|
|
else
|
|
|
|
$(report) warn "cannot find vim?"
|
|
|
|
fi
|
|
|
|
|
2019-04-14 07:26:21 +00:00
|
|
|
|
|
|
|
remove:
|
2020-03-09 17:30:45 +00:00
|
|
|
$(report) header "Removing vim config"
|
2019-12-13 17:00:11 +00:00
|
|
|
$(rm_link) ~/.vimrc
|
|
|
|
$(rm_link) $(TARGET_DIR)
|