mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-02 21:34:33 +02:00
plugins/neotest: add more adapters
This commit is contained in:
parent
975f1ca526
commit
5004178c0c
6 changed files with 109 additions and 2 deletions
|
@ -4,6 +4,9 @@
|
|||
# - Add the adapter to `all-adapters` in `tests/test-sources/plugins/neotest/default.nix`
|
||||
# - Add a more complete test case in `tests/test-sources/plugins/neotest/NAME.nix`
|
||||
{
|
||||
bash = {
|
||||
treesitter-parser = "bash";
|
||||
};
|
||||
dart = {
|
||||
treesitter-parser = "dart";
|
||||
};
|
||||
|
@ -16,15 +19,27 @@
|
|||
elixir = {
|
||||
treesitter-parser = "elixir";
|
||||
};
|
||||
foundry = {
|
||||
treesitter-parser = "solidity";
|
||||
};
|
||||
go = {
|
||||
treesitter-parser = "go";
|
||||
};
|
||||
gradle = {
|
||||
treesitter-parser = "kotlin,java";
|
||||
};
|
||||
haskell = {
|
||||
treesitter-parser = "haskell";
|
||||
};
|
||||
java = {
|
||||
treesitter-parser = "java";
|
||||
};
|
||||
jest = {
|
||||
treesitter-parser = "javascript";
|
||||
};
|
||||
minitest = {
|
||||
treesitter-parser = "ruby";
|
||||
};
|
||||
pest = {
|
||||
treesitter-parser = "php";
|
||||
};
|
||||
|
@ -52,4 +67,7 @@
|
|||
vitest = {
|
||||
treesitter-parser = "javascript";
|
||||
};
|
||||
zig = {
|
||||
treesitter-parser = "zig";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue