mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
71 lines
1.4 KiB
Nix
71 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>";
|
|
};
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|