Enable spell checking
This commit is contained in:
parent
0879a4b4b5
commit
88c0e77647
4
init.lua
4
init.lua
|
@ -88,6 +88,10 @@ vim.opt.cursorline = true
|
||||||
-- Minimal number of screen lines to keep above and below the cursor.
|
-- Minimal number of screen lines to keep above and below the cursor.
|
||||||
vim.opt.scrolloff = 12
|
vim.opt.scrolloff = 12
|
||||||
|
|
||||||
|
-- Set spell check on with English language
|
||||||
|
vim.opt.spelllang = 'en_us'
|
||||||
|
vim.opt.spell = true
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
-- See `:help vim.keymap.set()`
|
-- See `:help vim.keymap.set()`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue