From 75b8b88a047dc43eaafab86d6cdcc7815841963a Mon Sep 17 00:00:00 2001 From: ray Date: Mon, 19 Jan 2026 15:29:19 +0000 Subject: [PATCH] Enable spell checking in settings This change activates spell checking and sets the language to British English. --- lua/plugins/indent-blankline.lua | 6 +++--- lua/settings.lua | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/plugins/indent-blankline.lua b/lua/plugins/indent-blankline.lua index 6bfe898..89e9058 100644 --- a/lua/plugins/indent-blankline.lua +++ b/lua/plugins/indent-blankline.lua @@ -9,9 +9,9 @@ return { tab_char = '│', }, scope = { - enabled = true, -- Highlight current scope - show_start = true, -- Show underline at start of scope - show_end = false, -- Don't show underline at end (can be noisy) + enabled = true, -- Highlight current scope indent guide + show_start = true, -- Disable underline at start of scope + show_end = false, -- Don't show underline at end }, exclude = { filetypes = { diff --git a/lua/settings.lua b/lua/settings.lua index ed06b65..84cc889 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -47,6 +47,7 @@ vim.opt.pumblend = 0 -- No transparency -- The Pmenu* highlight groups control its appearance -- Spelling +vim.opt.spell = true vim.opt.spelllang = { "en_gb" } vim.opt.spelloptions = { "camel,noplainbuffer" }