summaryrefslogtreecommitdiff
path: root/after
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2022-07-20 10:13:12 +0530
committerlistout <listout@protonmail.com>2022-09-01 16:26:23 +0530
commita4924243d173dd02198c7e305f303584ef2a3931 (patch)
tree8935ee71f60b9822cc18a37cf240e6ad9714fd6b /after
parent75e2fc1ee0cbbdbde8ae30ea7f8cbe15a8cecb49 (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.vim4
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