Created
August 10, 2023 09:13
-
-
Save whateverforever/fac0b8bc01e05d8c799c8a06be3bcbd6 to your computer and use it in GitHub Desktop.
lunarvim lazy.vim lvim minimap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- lunarvim uses lazy.vim for plugin management | |
-- lazy.vim works with vimscript plugins, but | |
-- need to use init, instead of config | |
lvim.plugins = { | |
...snip... | |
{ | |
'wfxr/minimap.vim', | |
init = function() | |
vim.g.minimap_auto_start = 1 | |
end | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment