From 92c94fda20855212571864bd3f2311be185358bf Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 25 Apr 2024 01:31:10 +0300 Subject: [PATCH] plugins/treesiter: set up fold after `basic` --- modules/plugins/treesitter/config.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/plugins/treesitter/config.nix b/modules/plugins/treesitter/config.nix index fd841b0..c7bd71a 100644 --- a/modules/plugins/treesitter/config.nix +++ b/modules/plugins/treesitter/config.nix @@ -37,11 +37,11 @@ in { ]; }; - # For some reason treesitter highlighting does not work on start if this is set before syntax on - configRC.treesitter-fold = mkIf cfg.fold (entryBefore ["basic"] '' + # For some reason treesitter highlighting does not work on start + # if this is set before syntax on + configRC.treesitter-fold = mkIf cfg.fold (entryAfter ["basic"] '' set foldmethod=expr set foldexpr=nvim_treesitter#foldexpr() - set nofoldenable ''); luaConfigRC.treesitter = entryAfter ["basic"] ''