neovim/runtime/ftplugin/checkhealth.vim
dundargoc 07db909eb5
docs: misc (#31138)
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
2024-11-21 06:50:30 +08:00

18 lines
386 B
VimL

" Vim filetype plugin
" Language: Nvim :checkhealth buffer
if exists("b:did_ftplugin")
finish
endif
runtime! ftplugin/help.vim
setlocal wrap breakindent linebreak nolist
let &l:iskeyword='!-~,^*,^|,^",192-255'
if exists("b:undo_ftplugin")
let b:undo_ftplugin .= "|setl wrap< bri< lbr< kp< isk< list<"
else
let b:undo_ftplugin = "setl wrap< bri< lbr< kp< isk< list<"
endif