mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-15 15:02:47 +01:00
35 lines
646 B
Nix
35 lines
646 B
Nix
{
|
|
helpers,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "tagbar";
|
|
defaultPackage = pkgs.vimPlugins.tagbar;
|
|
globalPrefix = "tagbar_";
|
|
extraPackages = [ pkgs.ctags ];
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
# TODO introduced 2024-02-12: remove 2024-04-12
|
|
deprecateExtraConfig = true;
|
|
|
|
settingsExample = {
|
|
position = "right";
|
|
autoclose = false;
|
|
autofocus = false;
|
|
foldlevel = 2;
|
|
autoshowtag = true;
|
|
iconchars = [
|
|
""
|
|
""
|
|
];
|
|
visibility_symbols = {
|
|
public = " ";
|
|
protected = " ";
|
|
private = " ";
|
|
};
|
|
};
|
|
}
|