Warning
This plugin is still in early alpha version. Expect breaking changes 💥
It should work with any fairly modern neovim version. I tested that for the following:
neovim
>= 0.9 and nightly 0.11-dev releases
Install the marker.nvim
neovim plugin with your favourite package manager:
-- marker.nvim
return {
"mgierada/marker.nvim",
dependencies = { "leath-dub/snipe.nvim" },
enabled = true,
config = function()
require("marker").setup({
position = "topleft",
mappings = {
open = "<leader>ml",
select = "<cr>",
cancel = "<esc>",
preview = "p"
},
})
end,
}
The plugin is inspired by other awesome plugins and borrows some concepts:
- https://github.com/leath-dub/snipe.nvim
- https://github.com/nicholasxjy/snipe-marks.nvim
- https://github.com/ThePrimeagen/harpoon