feat(markdown): automatically wrap long lines

This commit is contained in:
Radu C. Martin 2025-04-19 22:25:32 +02:00
parent 15737b7151
commit a09691b210

View file

@ -3,3 +3,5 @@ vim.bo.fileformat = 'unix'
-- Optionally, enable spell checking for JSON comments
vim.wo.spell = true
-- Automatically wrap long lines
vim.o.wrap = true