Merge pull request #6 from fortydeea/feature/enable-spell-check
Enable spell check
This commit is contained in:
commit
dde8a5ed26
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