mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-14 06:22:47 +01:00
13 lines
231 B
Nix
13 lines
231 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ args:
|
|
with lib;
|
|
with import ../helpers.nix {inherit lib;};
|
|
mkPlugin args {
|
|
name = "tagbar";
|
|
package = pkgs.vimPlugins.tagbar;
|
|
globalPrefix = "tagbar_";
|
|
extraPackages = [pkgs.ctags];
|
|
}
|