blob: 3d8e9ace1a43e504808b596772709f6bd7187a47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|