Scan and highlight all marks in your buffer.
paq{'winston0410/mark-radar.nvim'}
use
{
'winston0410/mark-radar.nvim',
require("mark-radar").setup{
-- your options here, such as:
-- highlight_group = "<group_name>"
}
}
Plug 'winston0410/mark-radar.nvim'
After you have installed, call setup
to start using this plugin.
require("mark-radar").setup()
This is the default configuration.
local opts = {
set_default_mappings = true,
highlight_group = "RadarMark",
background_highlight = true,
background_highlight_group = "RadarBackground",
show_marks_at_jump_positions = true,
}
You can pass a table in setup()
to override the default configuration.
require("mark-radar").setup(opts)
The default mapping to activate mark-radar is the backtick/grave key (`)
This plugin is greatly inspired by hop.nvim