mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-18 17:55:38 +02:00
merge
This commit is contained in:
parent
a8bf9b1ba5
commit
ff360f7346
2 changed files with 8 additions and 0 deletions
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'
|
||||||
|
|
||||||
|
|
5
lua/custom/plugins/spellworm.lua
Normal file
5
lua/custom/plugins/spellworm.lua
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
'ravibrock/spellwarn.nvim',
|
||||||
|
event = 'VeryLazy',
|
||||||
|
config = true,
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue