From 44cbe023d0531ebb84c477daf77372a8f64233fe Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Sun, 13 Jul 2025 06:04:55 +0800 Subject: [PATCH] pkg(nixvim): Refactor tree-sitter module --- pkgs/nixvim/treesitter.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/nixvim/treesitter.nix b/pkgs/nixvim/treesitter.nix index 2f322e4..95b46aa 100644 --- a/pkgs/nixvim/treesitter.nix +++ b/pkgs/nixvim/treesitter.nix @@ -1,5 +1,5 @@ {...}: { - plugins = { + youthlic.plugins = { treesitter = { enable = true; # folding = true; @@ -12,8 +12,5 @@ indent.enable = true; }; }; - which-key = { - enable = true; - }; }; }