add treesitter commenstring

This commit is contained in:
Aditya 2024-03-04 19:59:35 +05:30
parent ac2cfabf1e
commit 838e41d9d5
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 13 additions and 0 deletions

View file

@ -17,6 +17,8 @@
./languages/treesitter/treesitter-context.nix
./languages/treesitter/treesitter-textobjects.nix
./languages/treesitter/treesitter.nix
./languages/treesitter/ts-autotag.nix
./languages/treesitter/treesitter-context-commentstring.nix
./dap/dap.nix

View file

@ -0,0 +1,6 @@
{
plugins.ts-context-commentstring = {
enable = true;
disableAutoInitialization = false;
};
}

View file

@ -0,0 +1,5 @@
{
plugins.ts-autotag = {
enable = true;
};
}