aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-05 13:20:24 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-05 13:20:24 +1200
commit0946352681a863a2d2f06008cc3dd63c8f8185c5 (patch)
treef14e7501fdcb2de4723b53e2e8873019c72a243b /Makefile
parentMerge branch 'release/v0.46.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-0.47.0.tar.gz (sig)
dotfiles-0.47.0.zip
Merge branch 'release/v0.47.0'v0.47.0
* release/v0.47.0: Bump VERSION Spin off markdown_autoformat as its own distro Merge bundle install into one command Restore ftplugin extras to vim/after dir Add ftplugin infrastructure and comments Add global options for markdown_autoformat.vim Use += shorthand in Vim ftplugin Pass in mapped key directly, not a flag
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 134935ae..93d12a0b 100644
--- a/Makefile
+++ b/Makefile
@@ -525,8 +525,8 @@ install-vim-after-syntax:
install-vim-bundle: install-vim-config
find vim/bundle/*/* \
-type d -exec sh -c \
- 'mkdir -p -- $(VIMDIR)/"$${1#vim/bundle/*/}"' _ {} \;
- find vim/bundle/*/*/* \
+ 'mkdir -p -- $(VIMDIR)/"$${1#vim/bundle/*/}"' _ {} \; \
+ -o \
-type f -exec sh -c \
'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/bundle/*/}"' _ {} \;
vim -eT dumb -c 'helptags $(VIMDIR)/doc' -c quit
@@ -546,13 +546,8 @@ install-vim-ftdetect:
cp -p -- vim/ftdetect/*.vim $(VIMDIR)/ftdetect
install-vim-ftplugin:
- mkdir -p $(VIMDIR)/ftplugin
- find vim/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)/indent
+ cp -p -- vim/indent/*.vim $(VIMDIR)/indent
install-vim-indent:
mkdir -p -- $(VIMDIR)/indent