From 88c0e77647793dcf285fcf2f855a04acecb334a8 Mon Sep 17 00:00:00 2001 From: smashblu Date: Fri, 12 Jul 2024 10:16:04 -0700 Subject: [PATCH] Enable spell checking --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 2de3e5b2..390396f8 100644 --- a/init.lua +++ b/init.lua @@ -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()`