mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
26 lines
428 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|