merge
This commit is contained in:
parent
a8bf9b1ba5
commit
ff360f7346
3
init.lua
3
init.lua
|
@ -147,6 +147,9 @@ vim.opt.splitbelow = true
|
||||||
vim.opt.list = true
|
vim.opt.list = true
|
||||||
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
||||||
|
|
||||||
|
-- Spell Check
|
||||||
|
vim.opt.spell = true
|
||||||
|
vim.opt.spelllang = 'en_US'
|
||||||
-- Preview substitutions live, as you type!
|
-- Preview substitutions live, as you type!
|
||||||
vim.opt.inccommand = 'split'
|
vim.opt.inccommand = 'split'
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
'ravibrock/spellwarn.nvim',
|
||||||
|
event = 'VeryLazy',
|
||||||
|
config = true,
|
||||||
|
}
|
Loading…
Reference in New Issue