nix-community.nixvim/tests/test-sources/plugins/by-name/marks/default.nix

24 lines
414 B
Nix
Raw Normal View History

2024-01-15 08:39:48 +01:00
{
empty = {
plugins.marks.enable = true;
};
defaults = {
plugins.marks = {
enable = true;
2024-05-05 19:39:35 +02:00
builtinMarks = [ ];
2024-01-15 08:39:48 +01:00
defaultMappings = true;
signs = true;
cyclic = true;
forceWriteShada = false;
refreshInterval = 150;
signPriority = 10;
2024-05-05 19:39:35 +02:00
excludedFiletypes = [ ];
excludedBuftypes = [ ];
bookmarks = { };
mappings = { };
2024-01-15 08:39:48 +01:00
};
};
}