mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
18 lines
342 B
Nix
18 lines
342 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mark-radar.enable = true;
|
||
|
};
|
||
|
|
||
|
# All the upstream default options of mark-radar
|
||
|
defaults = {
|
||
|
plugins.mark-radar = {
|
||
|
enable = true;
|
||
|
|
||
|
setDefaultMappings = true;
|
||
|
highlightGroup = "RadarMark";
|
||
|
backgroundHighlight = true;
|
||
|
backgroundHighlightGroup = "RadarBackground";
|
||
|
};
|
||
|
};
|
||
|
}
|