mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
17 lines
269 B
Nix
17 lines
269 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins.cmp = {
|
||
|
enable = true;
|
||
|
settings.sources = [
|
||
|
{
|
||
|
name = "async_path";
|
||
|
option = {
|
||
|
trailing_slash = false;
|
||
|
label_trailing_slash = true;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|