nix-community.nixvim/tests/test-sources/plugins/neotest/haskell.nix
2024-03-18 23:07:32 +01:00

26 lines
428 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.haskell = {
enable = true;
settings = {
build_tools = [
"stack"
"cabal"
];
frameworks = [
"tasty"
"hspec"
"sydtest"
];
};
};
};
};
};
}