plugins/cmp-async-path: init

This commit is contained in:
Felix Boehme 2024-04-30 14:58:06 +02:00 committed by Gaétan Lepage
parent 91e3bb0523
commit 2483dff03d
2 changed files with 17 additions and 0 deletions

View file

@ -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";

View file

@ -0,0 +1,16 @@
{
example = {
plugins.cmp = {
enable = true;
settings.sources = [
{
name = "async_path";
option = {
trailing_slash = false;
label_trailing_slash = true;
};
}
];
};
};
}