mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
plugins/cmp-async-path: init
This commit is contained in:
parent
91e3bb0523
commit
2483dff03d
2 changed files with 17 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
# Maps each source name to the plugin that provides it
|
# Maps each source name to the plugin that provides it
|
||||||
{
|
{
|
||||||
|
async_path = "cmp-async-path";
|
||||||
buffer = "cmp-buffer";
|
buffer = "cmp-buffer";
|
||||||
calc = "cmp-calc";
|
calc = "cmp-calc";
|
||||||
dap = "cmp-dap";
|
dap = "cmp-dap";
|
||||||
|
|
16
tests/test-sources/plugins/completion/cmp-async-path.nix
Normal file
16
tests/test-sources/plugins/completion/cmp-async-path.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
example = {
|
||||||
|
plugins.cmp = {
|
||||||
|
enable = true;
|
||||||
|
settings.sources = [
|
||||||
|
{
|
||||||
|
name = "async_path";
|
||||||
|
option = {
|
||||||
|
trailing_slash = false;
|
||||||
|
label_trailing_slash = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue