We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8bf9b1 commit ff360f7Copy full SHA for ff360f7
init.lua
@@ -147,6 +147,9 @@ vim.opt.splitbelow = true
147
vim.opt.list = true
148
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
149
150
+-- Spell Check
151
+vim.opt.spell = true
152
+vim.opt.spelllang = 'en_US'
153
-- Preview substitutions live, as you type!
154
vim.opt.inccommand = 'split'
155
lua/custom/plugins/spellworm.lua
@@ -0,0 +1,5 @@
1
+return {
2
+ 'ravibrock/spellwarn.nvim',
3
+ event = 'VeryLazy',
4
+ config = true,
5
+}
0 commit comments