fix(options): fix incsearch spelling mistake

Set incsearch to true not ture
This commit is contained in:
Robert Morrison 2025-10-10 14:27:22 +01:00
parent cfdc98a27d
commit 231a0613c6

View File

@ -14,7 +14,7 @@ opt.number = true
opt.ignorecase = true -- Searching should not care about case opt.ignorecase = true -- Searching should not care about case
opt.smartcase = true -- except from when you specify it in the search 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.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 -- Split in a more sensible manner
-- Splits go to the right or bottom keeping the original in the top left -- Splits go to the right or bottom keeping the original in the top left