mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
plugins/tagbar: add settingsExample
This commit is contained in:
parent
4023b25e66
commit
a6bf19966d
1 changed files with 17 additions and 1 deletions
|
@ -8,6 +8,22 @@ helpers.vim-plugin.mkVimPlugin config {
|
||||||
name = "tagbar";
|
name = "tagbar";
|
||||||
defaultPackage = pkgs.vimPlugins.tagbar;
|
defaultPackage = pkgs.vimPlugins.tagbar;
|
||||||
globalPrefix = "tagbar_";
|
globalPrefix = "tagbar_";
|
||||||
deprecateExtraConfig = true;
|
|
||||||
extraPackages = [pkgs.ctags];
|
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 = " ";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue