nix-community.nixvim/tests/test-sources/plugins/cmp/cmp-async-path.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
269 B
Nix
Raw Permalink Normal View History

2024-04-30 14:58:06 +02:00
{
example = {
plugins.cmp = {
enable = true;
settings.sources = [
{
name = "async_path";
option = {
trailing_slash = false;
label_trailing_slash = true;
};
}
];
};
};
}