config.nvim/ftplugin/markdown.lua
2025-04-19 22:25:32 +02:00

7 lines
194 B
Lua

-- Ensure file formatting is consistent
vim.bo.fileformat = 'unix'
-- Optionally, enable spell checking for JSON comments
vim.wo.spell = true
-- Automatically wrap long lines
vim.o.wrap = true