aboutsummaryrefslogtreecommitdiff
path: root/vim/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/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/indent')
-rw-r--r--vim/indent/help.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/vim/indent/help.vim b/vim/indent/help.vim
new file mode 100644
index 00000000..1edf64fb
--- /dev/null
+++ b/vim/indent/help.vim
@@ -0,0 +1,12 @@
+" Only do this when not done yet for this buffer
+if exists('b:did_indent')
+ finish
+endif
+let b:did_indent = 1
+
+" Use hard tabs for editing Vim help files
+setlocal noexpandtab shiftwidth=0 tabstop=8
+if &softtabstop != -1
+ let &softtabstop = &shiftwidth
+endif
+let b:undo_indent = 'setlocal expandtab< shiftwidth< softtabstop< tabstop<'