nix-community.nixvim/tests/test-sources/plugins/utils/marks.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
builtinMarks = [ ];
defaultMappings = true;
signs = true;
cyclic = true;
forceWriteShada = false;
refreshInterval = 150;
signPriority = 10;
excludedFiletypes = [ ];
excludedBuftypes = [ ];
bookmarks = { };
mappings = { };
};
};
}