mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-19 08:49:40 +01:00
12 lines
197 B
Nix
12 lines
197 B
Nix
{
|
|
helpers,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "tagbar";
|
|
package = pkgs.vimPlugins.tagbar;
|
|
globalPrefix = "tagbar_";
|
|
extraPackages = [pkgs.ctags];
|
|
}
|