diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-11-17 18:00:37 -0500 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-11-17 18:00:37 -0500 |
commit | c9ad7da9e2ffa48a5413006bbebd8c86ea4db6e8 (patch) | |
tree | b959dff5d2a08af63f28b89ebe9911af6a2dfd7b /.vim/Makefile | |
parent | 793fbda16fef9fd5f9290dc62399d54fed02ee72 (diff) |
Remove neovim from makefile
Diffstat (limited to '.vim/Makefile')
-rw-r--r-- | .vim/Makefile | 8 |
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 $@ |