feat(runtime): new checkhealth filetype (#16708)

This commit is contained in:
github-actions[bot]
2021-12-23 08:38:56 -07:00
committed by GitHub
parent ec101b9fd9
commit 09306f07c4
4 changed files with 54 additions and 36 deletions

View File

@@ -0,0 +1,20 @@
" Vim filetype plugin
" Language: Neovim checkhealth buffer
" Last Change: 2021 Dec 15
if exists("b:did_ftplugin")
finish
endif
runtime! ftplugin/markdown.vim ftplugin/markdown_*.vim ftplugin/markdown/*.vim
setlocal wrap breakindent linebreak
setlocal conceallevel=2 concealcursor=nc
setlocal keywordprg=:help
let &l:iskeyword='!-~,^*,^|,^",192-255'
if exists("b:undo_ftplugin")
let b:undo_ftplugin .= "|setl wrap< bri< lbr< cole< cocu< kp< isk<"
else
let b:undo_ftplugin = "setl wrap< bri< lbr< cole< cocu< kp< isk<"
endif