Enable spell check
This commit is contained in:
parent
f283002b26
commit
a754c65b4f
4
init.lua
4
init.lua
|
|
@ -166,6 +166,10 @@ vim.o.scrolloff = 10
|
||||||
-- See `:help 'confirm'`
|
-- See `:help 'confirm'`
|
||||||
vim.o.confirm = true
|
vim.o.confirm = true
|
||||||
|
|
||||||
|
-- Enable spell checking
|
||||||
|
vim.opt.spell = true
|
||||||
|
vim.opt.spelllang = 'en_us'
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
-- See `:help vim.keymap.set()`
|
-- See `:help vim.keymap.set()`
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue