From 55934524a4ba64eaa1ee212711a33e72e94e622c Mon Sep 17 00:00:00 2001 From: Felipe Matarazzo Date: Mon, 4 May 2026 10:39:05 -0300 Subject: [PATCH 1/2] fix: add missing apostrophe in comment --- lua/lazyvim/config/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/config/options.lua b/lua/lazyvim/config/options.lua index 809f5003..937aed18 100644 --- a/lua/lazyvim/config/options.lua +++ b/lua/lazyvim/config/options.lua @@ -92,7 +92,7 @@ opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize", "help", "glob opt.shiftround = true -- Round indent opt.shiftwidth = 2 -- Size of an indent opt.shortmess:append({ W = true, I = true, c = true, C = true }) -opt.showmode = false -- Dont show mode since we have a statusline +opt.showmode = false -- Don't show mode since we have a statusline opt.sidescrolloff = 8 -- Columns of context opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time opt.smartcase = true -- Don't ignore case with capitals From 35f9ac33162bae5e1b83b22c9562830d213b6980 Mon Sep 17 00:00:00 2001 From: Felipe Matarazzo Date: Mon, 4 May 2026 10:39:10 -0300 Subject: [PATCH 2/2] fix: typo 'begining' -> 'beginning' in clojure extra --- lua/lazyvim/plugins/extras/lang/clojure.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/clojure.lua b/lua/lazyvim/plugins/extras/lang/clojure.lua index 3d12dd1b..c3f0bd5b 100644 --- a/lua/lazyvim/plugins/extras/lang/clojure.lua +++ b/lua/lazyvim/plugins/extras/lang/clojure.lua @@ -78,13 +78,13 @@ return { { "n", "x" }, "[c", "call search('^; -\\+$', 'bw')", - { silent = true, buffer = true, desc = "Jumps to the begining of previous evaluation output." } + { silent = true, buffer = true, desc = "Jumps to the beginning of previous evaluation output." } ) vim.keymap.set( { "n", "x" }, "]c", "call search('^; -\\+$', 'w')", - { silent = true, buffer = true, desc = "Jumps to the begining of next evaluation output." } + { silent = true, buffer = true, desc = "Jumps to the beginning of next evaluation output." } ) end, })