feat(markdown): Add filetype config for markdown

markdown files will now by default:
- Have spell on
- Have a textwidth of 75
- Highlight columns 75 & 80
This commit is contained in:
Robert Morrison 2026-01-08 05:23:33 +00:00
parent 9d5cdff374
commit 5422c36cbc
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

3
ftplugin/markdown.lua Normal file
View File

@ -0,0 +1,3 @@
vim.wo.spell = true
vim.bo.textwidth = 75
vim.wo.colorcolumn = "75,80"