summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2015-11-17 18:00:37 -0500
committerUrbain Vaes <urbain@vaes.uk>2015-11-17 18:00:37 -0500
commitc9ad7da9e2ffa48a5413006bbebd8c86ea4db6e8 (patch)
treeb959dff5d2a08af63f28b89ebe9911af6a2dfd7b
parent793fbda16fef9fd5f9290dc62399d54fed02ee72 (diff)
Remove neovim from makefile
-rw-r--r--.vim/Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/.vim/Makefile b/.vim/Makefile
index 3c5fc67..6e07c30 100644
--- a/.vim/Makefile
+++ b/.vim/Makefile
@@ -1,20 +1,14 @@
HOME=/home/urbain
-TARGETS=$(addprefix $(HOME)/,.vimrc .nvimrc .vim .nvim .vim/vimundo)
+TARGETS=$(addprefix $(HOME)/,.vimrc .vim .vim/vimundo)
all : $(TARGETS)
$(HOME)/.vimrc :
rm -f $@ && ln -s $(PWD)/vimrc $@
-$(HOME)/.nvimrc :
- rm -f $@ && ln -s $(PWD)/vimrc $@
-
$(HOME)/.vim :
rm -f $@ && ln -s $(PWD) $@
-$(HOME)/.nvim :
- rm -f $@ && ln -s $(PWD) $@
-
$(HOME)/.vim/vimundo :
mkdir -p $@