mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
24 lines
414 B
Nix
24 lines
414 B
Nix
|
{
|
||
|
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 = { };
|
||
|
};
|
||
|
};
|
||
|
}
|