From a2560d9bf32d440a6f6a1c81af454bc0b09370e7 Mon Sep 17 00:00:00 2001 From: Soliprem Date: Tue, 15 Oct 2024 10:21:14 +0200 Subject: [PATCH] neorg: added vim.treesitter.enable --- modules/plugins/notes/neorg/config.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/plugins/notes/neorg/config.nix b/modules/plugins/notes/neorg/config.nix index 54a6bd8c..fab5079d 100644 --- a/modules/plugins/notes/neorg/config.nix +++ b/modules/plugins/notes/neorg/config.nix @@ -34,6 +34,7 @@ in { } (mkIf cfg.treesitter.enable { + vim.treesitter.enable = true; vim.treesitter.grammars = [cfg.treesitter.norgPackage]; }) ]);