1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-14 06:22:47 +01:00
nixvim/plugins/languages/tagbar.nix
2024-01-25 15:19:26 +01:00

13 lines
247 B
Nix

{
lib,
pkgs,
...
} @ args:
with lib;
with (import ../helpers.nix {inherit lib;}).vim-plugin;
mkVimPlugin args {
name = "tagbar";
package = pkgs.vimPlugins.tagbar;
globalPrefix = "tagbar_";
extraPackages = [pkgs.ctags];
}