1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-14 14:32:47 +01:00
nixvim/plugins/languages/tagbar.nix

32 lines
624 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 = "󰛑 ";
};
};
}