mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
21 lines
333 B
Nix
21 lines
333 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.dart = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
command = "flutter";
|
||
|
use_lsp = true;
|
||
|
custom_test_method_names = [ ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|