From a754c65b4fef74ff2c90f2ca0fe1b0e44d384937 Mon Sep 17 00:00:00 2001 From: 40DEEA <40deea@gmail.com> Date: Tue, 28 Oct 2025 13:32:36 -0700 Subject: [PATCH] Enable spell check --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 55ccc7f9..bd5ceee7 100644 --- a/init.lua +++ b/init.lua @@ -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()`