enable spellcheck on markdown

This commit is contained in:
2024-11-20 13:54:37 -05:00
parent ee6b828257
commit 219811c484
+1
View File
@@ -2,5 +2,6 @@ vim.api.nvim_create_autocmd("FileType", {
pattern = "markdown", pattern = "markdown",
callback = function() callback = function()
vim.opt_local.textwidth = 80 vim.opt_local.textwidth = 80
vim.opt_local.spell = true
end, end,
}) })