1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-19 08:49:40 +01:00
nixvim/plugins/languages/tagbar.nix
2024-02-10 17:53:41 +01:00

12 lines
197 B
Nix

{
helpers,
config,
pkgs,
...
}:
helpers.vim-plugin.mkVimPlugin config {
name = "tagbar";
package = pkgs.vimPlugins.tagbar;
globalPrefix = "tagbar_";
extraPackages = [pkgs.ctags];
}