aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-01 22:33:01 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-01 22:33:01 +1200
commit09d180ee3c798928535c5a0d0677594605652b9a (patch)
tree954108c16afc17b7732d505a1261640d73d7e048 /Makefile
parentAdd new html/timestamp.vim ftplugin (diff)
downloaddotfiles-09d180ee3c798928535c5a0d0677594605652b9a.tar.gz
dotfiles-09d180ee3c798928535c5a0d0677594605652b9a.zip
Merge HTML timestamp into after/ftplugin/html.vim
I don't see myself breaking this out into its own ftplugin, and the Makefile can be simpler this way.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 4 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 45726635..f0a0c5f9 100644
--- a/Makefile
+++ b/Makefile
@@ -509,11 +509,8 @@ install-vim-after: install-vim-after-ftplugin \
install-vim-after-syntax
install-vim-after-ftplugin:
- find vim/after/ftplugin/* \
- -type d -exec sh -c \
- 'mkdir -p -- $(VIMDIR)/"$${1#vim/}"' _ {} \; \
- -o -type f -exec sh -c \
- 'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/}"' _ {} \;
+ mkdir -p $(VIMDIR)/after/ftplugin
+ cp -p -- vim/after/ftplugin/*.vim $(VIMDIR)/after/ftplugin
install-vim-after-indent:
mkdir -p $(VIMDIR)/after/indent
@@ -528,11 +525,8 @@ install-vim-after-syntax:
cp -p -- vim/after/syntax/*.vim $(VIMDIR)/after/syntax
install-vim-autoload:
- find vim/autoload/* \
- -type d -exec sh -c \
- 'mkdir -p -- $(VIMDIR)/"$${1#vim/}"' _ {} \; \
- -o -type f -exec sh -c \
- 'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/}"' _ {} \;
+ mkdir -p $(VIMDIR)/autoload
+ cp -p -- vim/autoload/*.vim $(VIMDIR)/autoload
install-vim-bundle: install-vim-config
find vim/bundle/*/* \