-
Notifications
You must be signed in to change notification settings - Fork 42
Description
I have tried multiple similar plugins, such as harpoon2 (delayed for 1.5 years and still not merged into the master), grapple, dartboard, warp, booky, rabbit, etc. Arrow is the one that implements the concept of focusing on one thing thoroughly and beautifully. It's amazing!
Currently, there is a minor issue regarding how to disable arrow modification of the sign. As shown in the screenshot, I have set the signcolumn to number, which results in the default display of the mark's serial number before the mark, instead of the expected line number. Setting the signcolumn to yes can solve this issue, but the signcolumn will be too wide, which is not the effect I want. I expect arrow to not modify the sign at all and restore the default display of the line number.
I'm using NVIM v0.11.5 on Win11 platform, and arrow config is as follows:
{
"otavioschwanck/arrow.nvim",
dependencies = {
{ "nvim-tree/nvim-web-devicons" },
},
opts = {
per_buffer_config = {
lines = 1,
satellite = { -- default to nil, display arrow index in scrollbar at every update
enable = false,
overlap = true,
priority = 1000,
},
},
show_icons = true,
leader_key = ";", -- Recommended to be a single key
buffer_leader_key = "m", -- Per Buffer Mappings
},
}