fix markdown editor settings

This commit is contained in:
2025-09-29 23:44:18 -04:00
parent ea5e36d5f3
commit 31f992a630
+2 -2
View File
@@ -6,7 +6,7 @@ local o = vim.opt_local
autocmd('FileType', {
pattern = 'markdown',
callback = function()
o.colorcolumn = '+1,+2'
-- o.colorcolumn = '+1,+2'
o.textwidth = 80
o.spell = true
end,
@@ -31,4 +31,4 @@ autocmd('TextYankPost', {
callback = function()
vim.highlight.on_yank({ higroup = 'IncSearch', timeout = '800' })
end,
})
})