Skip to content

Commit

Permalink
plugins/tagbar: add settingsExample
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Mar 3, 2024
1 parent 4023b25 commit a6bf199
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion plugins/languages/tagbar.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "󰛑 ";
};
};
}

0 comments on commit a6bf199

Please sign in to comment.