diff --git a/plugins/languages/tagbar.nix b/plugins/languages/tagbar.nix index 8e9fd4cb..3432feb3 100644 --- a/plugins/languages/tagbar.nix +++ b/plugins/languages/tagbar.nix @@ -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 = "󰛑 "; + }; + }; }