From 7cb55166856ffcc0b920d305a7d48508f7e57b26 Mon Sep 17 00:00:00 2001 From: zymon Date: Fri, 23 Aug 2024 17:21:04 +0200 Subject: [PATCH] Makefile: specify defualt install path --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 921453f..27feb6d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ + +NVIM_COFNIG = "${XDG_CONFnG_HOME}/nvim" + install: - ln -s `pwd` "${XDG_CONFIG_HOME}/nvim" + ln -s `pwd` $(NVIM_COFNIG) uninstall: - rm "${XDG_CONFIG_HOME}/nvim" + rm $(NVIM_COFNIG_DIR)