From 0ec73d6242582783ae1a9d457dfe04a5bc852199 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 30 Oct 2017 11:48:42 +1300 Subject: Move vim/after/ftplugin files into vim/ftplugin None of the settings in here need to be run after the core configuration files are loaded, so I'll put them in a slightly more accessible or logical place. This adds a new target `install-vim-ftplugin`, and makes that a prerequisite of the `install-vim` target. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3d04f3de..455a69d4 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,7 @@ install-vim-bundle \ install-vim-config \ install-vim-ftdetect \ + install-vim-ftplugin \ install-vim-gui \ install-vim-gui-config \ install-vim-indent \ @@ -467,6 +468,7 @@ install-urxvt: urxvt/ext/select install-vim: install-vim-bundle \ install-vim-config \ install-vim-ftdetect \ + install-vim-ftplugin \ install-vim-indent install-vim-bundle: install-vim-config @@ -483,6 +485,10 @@ install-vim-ftdetect: mkdir -p -- $(HOME)/.vim/ftdetect cp -p -- vim/ftdetect/*.vim $(HOME)/.vim/ftdetect +install-vim-ftplugin: + mkdir -p -- $(HOME)/.vim/ftplugin + cp -p -- vim/ftplugin/*.vim $(HOME)/.vim/ftplugin + install-vim-indent: mkdir -p -- $(HOME)/.vim/indent cp -p -- vim/indent/*.vim $(HOME)/.vim/indent -- cgit v1.2.3