mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
07db909eb5
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
18 lines
386 B
VimL
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
|