aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-20 00:38:10 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-20 00:38:10 +1200
commit877b2f3593c52ae3c819b725f48271b93443a763 (patch)
tree3d63daccf3cbc061b5494a53cd2c6e6e161c6388 /vim/after/indent
parentUpdate vim-paste-insert to v0.2.0 (diff)
downloaddotfiles-877b2f3593c52ae3c819b725f48271b93443a763.tar.gz
dotfiles-877b2f3593c52ae3c819b725f48271b93443a763.zip
Move Vim help indent rules to main indent ftplugin
I assumed Vim's runtime files included indent rules for :help files, but they don't.
Diffstat (limited to 'vim/after/indent')
-rw-r--r--vim/after/indent/help.vim6
1 files changed, 0 insertions, 6 deletions
diff --git a/vim/after/indent/help.vim b/vim/after/indent/help.vim
deleted file mode 100644
index 449e3b4a..00000000
--- a/vim/after/indent/help.vim
+++ /dev/null
@@ -1,6 +0,0 @@
-" Use hard tabs for Vim help
-setlocal noexpandtab shiftwidth=0 tabstop=8
-if &softtabstop != -1
- let &softtabstop = &shiftwidth
-endif
-let b:undo_indent .= '|setlocal expandtab< shiftwidth< softtabstop< tabstop<'