feat: Removed highlighting all search matches
This commit is contained in:
parent
e186a765ee
commit
4c564a6df3
|
@ -36,7 +36,7 @@ vim.opt.undofile = true -- Persistent undo history
|
||||||
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" -- Persistent undo save location
|
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" -- Persistent undo save location
|
||||||
|
|
||||||
-- Search Behavior
|
-- 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
|
vim.opt.incsearch = true -- Highlight matches as its being typed
|
||||||
|
|
||||||
-- UI Layout
|
-- UI Layout
|
||||||
|
|
Loading…
Reference in New Issue