Explorar o código

nixpkgs/neovim: disable hlsearch

It's too noisy and we can still selectively turn it on if we actually
need it.
Thomas Dy %!s(int64=2) %!d(string=hai) anos
pai
achega
84a500e0b9
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      .config/nixpkgs/neovim/settings.lua

+ 3 - 0
.config/nixpkgs/neovim/settings.lua

@@ -28,6 +28,9 @@ vim.o.breakindentopt = 'shift:2,sbr'
 -- show whitespace
 vim.o.list = true
 
+-- disable search highlight
+vim.o.hlsearch = false
+
 -- always show sign column to avoid layout shift when staging
 vim.o.signcolumn = 'yes'