plugins/treesiter: set up fold after `basic`

This commit is contained in:
NotAShelf 2024-04-25 01:31:10 +03:00
parent 103941e270
commit 92c94fda20
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
1 changed files with 3 additions and 3 deletions

View File

@ -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"] ''