This commit is contained in:
chaptersix 2025-03-22 20:30:42 -05:00
parent a8bf9b1ba5
commit ff360f7346
2 changed files with 8 additions and 0 deletions

View File

@ -147,6 +147,9 @@ vim.opt.splitbelow = true
vim.opt.list = true
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
-- Spell Check
vim.opt.spell = true
vim.opt.spelllang = 'en_US'
-- Preview substitutions live, as you type!
vim.opt.inccommand = 'split'

View File

@ -0,0 +1,5 @@
return {
'ravibrock/spellwarn.nvim',
event = 'VeryLazy',
config = true,
}