mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 12:45:57 +01:00
plugins/treesiter: set up fold after basic
This commit is contained in:
parent
103941e270
commit
92c94fda20
1 changed files with 3 additions and 3 deletions
|
@ -37,11 +37,11 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# For some reason treesitter highlighting does not work on start if this is set before syntax on
|
# For some reason treesitter highlighting does not work on start
|
||||||
configRC.treesitter-fold = mkIf cfg.fold (entryBefore ["basic"] ''
|
# if this is set before syntax on
|
||||||
|
configRC.treesitter-fold = mkIf cfg.fold (entryAfter ["basic"] ''
|
||||||
set foldmethod=expr
|
set foldmethod=expr
|
||||||
set foldexpr=nvim_treesitter#foldexpr()
|
set foldexpr=nvim_treesitter#foldexpr()
|
||||||
set nofoldenable
|
|
||||||
'');
|
'');
|
||||||
|
|
||||||
luaConfigRC.treesitter = entryAfter ["basic"] ''
|
luaConfigRC.treesitter = entryAfter ["basic"] ''
|
||||||
|
|
Loading…
Reference in a new issue