From 78c24185d5ed09adaee4a7f655df74e74c4f35fb Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Tue, 22 Jul 2025 09:46:01 +0300 Subject: [PATCH] fix(treesitter): enable highlight? was this really not enabled by default? didn't event notice --- config/plugins/treesitter.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/config/plugins/treesitter.nix b/config/plugins/treesitter.nix index d15124b..69072cc 100644 --- a/config/plugins/treesitter.nix +++ b/config/plugins/treesitter.nix @@ -1,5 +1,6 @@ { plugins.treesitter = { enable = true; + settings.highlight.enable = true; }; } -- 2.44.1