1
0
Fork 0
znvim/Makefile
2025-01-25 11:49:44 +01:00

8 lines
175 B
Makefile

NVIM_CONFIG_DIR = "$${XDG_CONFIG_HOME:-$$HOME/.config}/nvim"
install:
@mkdir -p $(NVIM_CONFIG_DIR)
@ln -sfn `pwd` $(NVIM_CONFIG_DIR)
uninstall:
rm -rf $(NVIM_CONFIG_DIR)