diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-20 00:38:10 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-20 00:38:10 +1200 |
commit | 877b2f3593c52ae3c819b725f48271b93443a763 (patch) | |
tree | 3d63daccf3cbc061b5494a53cd2c6e6e161c6388 /vim/after | |
parent | Update vim-paste-insert to v0.2.0 (diff) | |
download | dotfiles-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')
-rw-r--r-- | vim/after/indent/help.vim | 6 |
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<' |