plugins/tagbar: add settingsExample

This commit is contained in:
Gaetan Lepage 2024-03-02 22:58:22 +01:00 committed by Gaétan Lepage
parent 4023b25e66
commit a6bf19966d

View file

@ -8,6 +8,22 @@ helpers.vim-plugin.mkVimPlugin config {
name = "tagbar";
defaultPackage = pkgs.vimPlugins.tagbar;
globalPrefix = "tagbar_";
deprecateExtraConfig = true;
extraPackages = [pkgs.ctags];
# 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 = "󰛑 ";
};
};
}