1
0
Fork 0

markdown: set spell check automatically

This commit is contained in:
Felipe 2023-08-05 15:50:54 -04:00
parent 60bbddef35
commit 92a1a1753a
Signed by: pitbuster
SSH key fingerprint: SHA256:HDYu2Pm4/TmSX8GBwV49UvFWr1Ljg8XlHxKeCpjJpOk

View file

@ -169,6 +169,7 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
pattern = "markdown",
callback = function()
vim.opt_local.textwidth = 85
vim.opt_local.spell = true
end,
})
-- YAML --