From 231a0613c66dd2945a347eaec09c811e974df6e6 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Fri, 10 Oct 2025 14:27:22 +0100 Subject: [PATCH] fix(options): fix incsearch spelling mistake Set incsearch to true not ture --- lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/options.lua b/lua/core/options.lua index 10f8c26..d25534a 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -14,7 +14,7 @@ opt.number = true opt.ignorecase = true -- Searching should not care about case opt.smartcase = true -- except from when you specify it in the search opt.hlsearch = true -- highlights all searches (this is now a Nvim DEFAULT) -opt.incsearch = ture -- begins searching as you type (also a DEFAULT) +opt.incsearch = true -- begins searching as you type (also a DEFAULT) -- Split in a more sensible manner -- Splits go to the right or bottom keeping the original in the top left