mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-14 06:22:47 +01:00
13 lines
235 B
Nix
13 lines
235 B
Nix
{
|
|
helpers,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "tagbar";
|
|
defaultPackage = pkgs.vimPlugins.tagbar;
|
|
globalPrefix = "tagbar_";
|
|
deprecateExtraConfig = true;
|
|
extraPackages = [pkgs.ctags];
|
|
}
|