Enable spell checking

This commit is contained in:
smashblu 2024-07-12 10:16:04 -07:00
parent 0879a4b4b5
commit 88c0e77647
1 changed files with 4 additions and 0 deletions

View File

@ -88,6 +88,10 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 12
-- Set spell check on with English language
vim.opt.spelllang = 'en_us'
vim.opt.spell = true
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`