Merge pull request #6 from fortydeea/feature/enable-spell-check

Enable spell check
This commit is contained in:
40DEEA 2025-10-28 13:33:26 -07:00 committed by GitHub
commit dde8a5ed26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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()`