plugins/vim-dadbod-completion: init

plguins/vim-dadbod-completion: Add cmpSource
This commit is contained in:
bpatel347 2024-11-08 23:08:24 -05:00 committed by nix-infra-bot
parent 5dfc9526ef
commit 54f567166d
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin {
name = "vim-dadbod-completion";
maintainers = [ lib.maintainers.BoneyPatel ];
imports = [
{ cmpSourcePlugins.vim-dadbod-completion = "vim-dadbod-completion"; }
];
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.vim-dadbod-completion.enable = true;
};
}