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:
|
2019-04-27 22:21:00 +00:00
|
|
|
ifneq ($(call cmd_exist,vim), true)
|
2019-04-14 07:26:21 +00:00
|
|
|
$(error Vim not installed)
|
|
|
|
endif
|
|
|
|
$(info => Setting up vim)
|
2019-12-13 17:00:11 +00:00
|
|
|
$(mk_link) $(SRC_DIR) $(TARGET_DIR)
|
|
|
|
$(mk_link) $(SRC_DIR)/vimrc ~/.vimrc
|
2019-04-14 07:26:21 +00:00
|
|
|
|
|
|
|
update:
|
2019-04-27 22:21:00 +00:00
|
|
|
ifneq ($(call cmd_exist,vim), true)
|
|
|
|
$(error Vim not installed)
|
|
|
|
endif
|
2019-04-14 07:26:21 +00:00
|
|
|
$(info => Updating vim)
|
2019-04-27 22:21:00 +00:00
|
|
|
curl -fsLo $(PLUG_PATH) $(PLUG_URL) ; $(report) "vim plug setup"
|
|
|
|
vim +PlugInstall +PlugUpdate +qall ; $(report) "downloading/updating plugins"
|
2019-04-14 07:26:21 +00:00
|
|
|
|
|
|
|
remove:
|
2019-04-27 22:21:00 +00:00
|
|
|
$(info => Removing vim config)
|
2019-12-13 17:00:11 +00:00
|
|
|
$(rm_link) ~/.vimrc
|
|
|
|
$(rm_link) $(TARGET_DIR)
|