aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-04 19:11:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-04 19:11:45 +1200
commit3c7a5d27d22461144547fee3fb0d5ae02af5e8e9 (patch)
tree18a11ced1449e92152215b189115cfb413b8aef1 /Makefile
parentDon't load my HTML ftplugins for Markdown types (diff)
downloaddotfiles-3c7a5d27d22461144547fee3fb0d5ae02af5e8e9.tar.gz
dotfiles-3c7a5d27d22461144547fee3fb0d5ae02af5e8e9.zip
Move markdown_autoformat.vim funcs back to local
No advantage to making them autoload
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 345952cd..fd08950d 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,6 @@
install-vim-after-indent \
install-vim-after-plugin \
install-vim-after-syntax \
- install-vim-autoload \
install-vim-bundle \
install-vim-compiler \
install-vim-config \
@@ -492,7 +491,6 @@ VIMDIR = $(HOME)/.vim
VIMRC = $(HOME)/.vimrc
install-vim: install-vim-after \
- install-vim-autoload \
install-vim-bundle \
install-vim-compiler \
install-vim-config \
@@ -524,14 +522,6 @@ install-vim-after-syntax:
mkdir -p $(VIMDIR)/after/syntax
cp -p -- vim/after/syntax/*.vim $(VIMDIR)/after/syntax
-install-vim-autoload:
- find vim/autoload \
- -type d -exec sh -c \
- 'mkdir -- $(VIMDIR)/"$${1#vim/}"' _ {} \; \
- -o \
- -type f -exec sh -c \
- 'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/}"' _ {} \;
-
install-vim-bundle: install-vim-config
find vim/bundle/*/* \
-type d -exec sh -c \