diff options
author | listout <listout@protonmail.com> | 2022-07-20 10:13:12 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-01 16:26:23 +0530 |
commit | a4924243d173dd02198c7e305f303584ef2a3931 (patch) | |
tree | 8935ee71f60b9822cc18a37cf240e6ad9714fd6b /after | |
parent | 75e2fc1ee0cbbdbde8ae30ea7f8cbe15a8cecb49 (diff) |
nvim/after/ftplugin/markdown: text width to 72
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'after')
-rw-r--r-- | after/ftplugin/markdown.vim | 4 |
1 files changed, 2 insertions, 2 deletions
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 |