From a4924243d173dd02198c7e305f303584ef2a3931 Mon Sep 17 00:00:00 2001 From: listout Date: Wed, 20 Jul 2022 10:13:12 +0530 Subject: nvim/after/ftplugin/markdown: text width to 72 Signed-off-by: listout --- after/ftplugin/markdown.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'after/ftplugin') diff --git a/after/ftplugin/markdown.vim b/after/ftplugin/markdown.vim index 890988f..2ffe41a 100644 --- a/after/ftplugin/markdown.vim +++ b/after/ftplugin/markdown.vim @@ -10,8 +10,8 @@ let g:vim_markdown_anchorexpr="'<<'.v:anchor.'>>'" " Spell checking set spell spelllang=en_us -set textwidth=80 -set colorcolumn=80 +set textwidth=72 +set colorcolumn=72 " Does not highlight conceal highlight Conceal ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE -- cgit v1.2.3