From e085e2efb9c76a76342abf38e47991849c651679 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 13 Sep 2023 16:11:50 +0200 Subject: [PATCH] Enable hlsearch Can be cancelled with --- 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 933be87..2371bf2 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -82,7 +82,7 @@ vim.opt.diffopt:append("internal") -- https://vimways.org/2018/the-power-of-diff/ vim.opt.diffopt:append({ "indent-heuristic", "algorithm:histogram", }) vim.fn.execute("filetype plugin on") -vim.opt.hlsearch = false +vim.opt.hlsearch = true vim.opt.laststatus = 3 vim.opt.textwidth = 80 vim.opt.colorcolumn = '+1'