Skip to content

Commit ff360f7

Browse files
committed
merge
1 parent a8bf9b1 commit ff360f7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

init.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ vim.opt.splitbelow = true
147147
vim.opt.list = true
148148
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
149149

150+
-- Spell Check
151+
vim.opt.spell = true
152+
vim.opt.spelllang = 'en_US'
150153
-- Preview substitutions live, as you type!
151154
vim.opt.inccommand = 'split'
152155

lua/custom/plugins/spellworm.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
return {
2+
'ravibrock/spellwarn.nvim',
3+
event = 'VeryLazy',
4+
config = true,
5+
}

0 commit comments

Comments
 (0)