mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
empty = {
|
|
plugins.barbar.enable = true;
|
|
};
|
|
|
|
keymappings = {
|
|
plugins.barbar = {
|
|
enable = true;
|
|
|
|
keymaps = {
|
|
silent = true;
|
|
|
|
next = "<TAB>";
|
|
previous = "<S-TAB>";
|
|
close = "<C-w>";
|
|
};
|
|
};
|
|
};
|
|
|
|
# All the upstream default options of barbar
|
|
defaults = {
|
|
plugins.barbar = {
|
|
enable = true;
|
|
|
|
animation = true;
|
|
autoHide = false;
|
|
clickable = true;
|
|
excludeFileTypes = [];
|
|
excludeFileNames = [];
|
|
focusOnClose = "left";
|
|
hide = {};
|
|
highlightAlternate = false;
|
|
highlightInactiveFileIcons = false;
|
|
highlightVisible = true;
|
|
icons = {
|
|
bufferIndex = false;
|
|
bufferNumber = false;
|
|
button = "";
|
|
diagnostics = {};
|
|
filetype = {enable = true;};
|
|
inactive = {
|
|
separator = {
|
|
left = "▎";
|
|
right = "";
|
|
};
|
|
};
|
|
modified = {button = "●";};
|
|
pinned = {button = "";};
|
|
separator = {
|
|
left = "▎";
|
|
right = "";
|
|
};
|
|
};
|
|
insertAtEnd = false;
|
|
insertAtStart = false;
|
|
letters = "asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP";
|
|
maximumLength = 30;
|
|
maximumPadding = 4;
|
|
minimumPadding = 1;
|
|
noNameTitle = null;
|
|
semanticLetters = true;
|
|
sidebarFiletypes = {};
|
|
tabpages = true;
|
|
};
|
|
};
|
|
}
|