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

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

22 lines
451 B
Nix
Raw Normal View History

{
empty = {
plugins.mark-radar.enable = true;
};
defaults = {
plugins.mark-radar = {
enable = true;
settings = {
set_default_mappings = true;
highlight_group = "RadarMark";
background_highlight = true;
background_highlight_group = "RadarBackground";
text_position = "overlay";
show_marks_at_jump_positions = true;
show_off_screen_marks = true;
};
};
};
}