mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
9 lines
227 B
Nix
9 lines
227 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.vim-plugin.mkVimPlugin {
|
||
|
name = "vim-dadbod-completion";
|
||
|
maintainers = [ lib.maintainers.BoneyPatel ];
|
||
|
imports = [
|
||
|
{ cmpSourcePlugins.vim-dadbod-completion = "vim-dadbod-completion"; }
|
||
|
];
|
||
|
}
|