add treesitter-context and ts-autotag to treesitter

This commit is contained in:
Patrick Neff 2024-08-07 12:05:18 +02:00
parent 187cc0175e
commit 66b7f13861
1 changed files with 9 additions and 5 deletions

View File

@ -1,9 +1,13 @@
{ {
plugins.treesitter = { plugins = {
treesitter = {
enable = true; enable = true;
settings = { settings = {
indent.enable = true; indent.enable = true;
}; };
folding = true; folding = true;
}; };
treesitter-context.enable = true;
ts-autotag.enable = true;
};
} }