feat: enable spell sheck for markdown and json files

This commit is contained in:
Radu C. Martin 2025-04-19 22:21:38 +02:00
parent f00b283bcb
commit 15737b7151
2 changed files with 20 additions and 0 deletions

5
ftplugin/markdown.lua Normal file
View file

@ -0,0 +1,5 @@
-- Ensure file formatting is consistent
vim.bo.fileformat = 'unix'
-- Optionally, enable spell checking for JSON comments
vim.wo.spell = true