Enable spell check

This commit is contained in:
40DEEA 2025-10-28 13:32:36 -07:00
parent f283002b26
commit a754c65b4f
1 changed files with 4 additions and 0 deletions

View File

@ -166,6 +166,10 @@ vim.o.scrolloff = 10
-- See `:help 'confirm'`
vim.o.confirm = true
-- Enable spell checking
vim.opt.spell = true
vim.opt.spelllang = 'en_us'
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`