mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
8 lines
224 B
Nix
8 lines
224 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "vim-dadbod-completion";
|
|
maintainers = [ lib.maintainers.BoneyPatel ];
|
|
imports = [
|
|
{ cmpSourcePlugins.vim-dadbod-completion = "vim-dadbod-completion"; }
|
|
];
|
|
}
|