nix-community.nixvim/tests/test-sources/plugins/completion/cmp-async-path.nix
2024-04-30 18:36:11 +02:00

16 lines
269 B
Nix

{
example = {
plugins.cmp = {
enable = true;
settings.sources = [
{
name = "async_path";
option = {
trailing_slash = false;
label_trailing_slash = true;
};
}
];
};
};
}