minimap.vim
minimap.vim copied to clipboard
Add installation instructions for lazy.nvim
You can refer to my:
return {
"wfxr/minimap.vim",
build = "cargo install --locked code-minimap",
lazy = false,
cmd = { "Minimap", "MinimapClose", "MinimapToggle", "MinimapRefresh", "MinimapUpdateHighlight" },
init = function()
vim.cmd("let g:minimap_width = 10")
vim.cmd("let g:minimap_auto_start = 1")
vim.cmd("let g:minimap_auto_start_win_enter = 1")
end,
-- config = function()
-- vim.cmd("let g:minimap_width = 10")
-- vim.cmd("let g:minimap_auto_start = 1")
-- vim.cmd("let g:minimap_auto_start_win_enter = 1")
-- end,
}
then you should check:
👍
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.