nVim/ftplugin/markdown.lua
Robert Morrison 5422c36cbc
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
2026-01-08 05:23:33 +00:00

4 lines
71 B
Lua

vim.wo.spell = true
vim.bo.textwidth = 75
vim.wo.colorcolumn = "75,80"