Makefile: specify defualt install path
This commit is contained in:
parent
2df4a2e26e
commit
7cb5516685
1 changed files with 5 additions and 2 deletions
7
Makefile
7
Makefile
|
@ -1,5 +1,8 @@
|
||||||
|
|
||||||
|
NVIM_COFNIG = "${XDG_CONFnG_HOME}/nvim"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
ln -s `pwd` "${XDG_CONFIG_HOME}/nvim"
|
ln -s `pwd` $(NVIM_COFNIG)
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm "${XDG_CONFIG_HOME}/nvim"
|
rm $(NVIM_COFNIG_DIR)
|
||||||
|
|
Loading…
Reference in a new issue