nix-community.nixvim/tests/test-sources/plugins/cmp/cmp-async-path.nix
Matt Sturgeon ad85cd760e
plugins/completion: move to by-name
- Move nvim-cmp to plugins/cmp
- Move other completion plugins to plugins/by-name
2024-09-09 11:50:40 +01:00

16 lines
269 B
Nix

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