nix-community.nixvim/tests/test-sources/plugins/bufferlines/barbar.nix

72 lines
1.4 KiB
Nix
Raw Normal View History

{
empty = {
plugins.barbar.enable = true;
};
keymappings = {
plugins.barbar = {
enable = true;
keymaps = {
silent = true;
next = "<TAB>";
previous = "<S-TAB>";
close = "<C-w>";
};
};
};
defaults = {
plugins.barbar = {
enable = true;
animation = true;
autoHide = false;
clickable = true;
2024-05-05 19:39:35 +02:00
excludeFileTypes = [ ];
excludeFileNames = [ ];
focusOnClose = "left";
2024-05-05 19:39:35 +02:00
hide = { };
highlightAlternate = false;
highlightInactiveFileIcons = false;
highlightVisible = true;
icons = {
bufferIndex = false;
bufferNumber = false;
button = "";
2024-05-05 19:39:35 +02:00
diagnostics = { };
filetype = {
enable = true;
};
inactive = {
separator = {
left = "";
right = "";
};
};
2024-05-05 19:39:35 +02:00
modified = {
button = "";
};
pinned = {
button = "";
};
separator = {
left = "";
right = "";
};
};
insertAtEnd = false;
insertAtStart = false;
letters = "asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP";
maximumLength = 30;
maximumPadding = 4;
minimumPadding = 1;
noNameTitle = null;
semanticLetters = true;
2024-05-05 19:39:35 +02:00
sidebarFiletypes = { };
tabpages = true;
};
};
}