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