feat: Removed highlighting all search matches

This commit is contained in:
Tristan Russell 2025-08-24 23:18:51 -04:00
parent e186a765ee
commit 4c564a6df3
Signed by: tristanr
GPG Key ID: 4495C92911DF04CA
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ vim.opt.undofile = true -- Persistent undo history
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" -- Persistent undo save location
-- Search Behavior
vim.opt.hlsearch = true -- Highlight all search matches
vim.opt.hlsearch = false -- Highlight all search matches
vim.opt.incsearch = true -- Highlight matches as its being typed
-- UI Layout