From 5b6412739b8e267b729553c03b3d910d977ec7d2 Mon Sep 17 00:00:00 2001 From: Marcelo Jacobus Date: Thu, 3 Jul 2025 17:49:34 -0300 Subject: [PATCH] Set smartcase --- lua/user/options.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/user/options.lua b/lua/user/options.lua index 5a47cf3..fc30737 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -26,6 +26,10 @@ vim.opt.splitright = true vim.opt.wrap = false +-- Enable smart case search +vim.opt.ignorecase = true +vim.opt.smartcase = true + -- Diagnostic config -- TODO: Do I still need this? -- vim.diagnostic.config({ virtual_text = false })