live-command.nvim
live-command.nvim copied to clipboard
Why "use { }" for installing with Lazy?
Right now in the documentation, it says to do this for install with lazy.nvim, why use { }?
use {
"smjonas/live-command.nvim",
-- live-command supports semantic versioning via Git tags
-- tag = "2.*",
config = function()
require("live-command").setup()
end,
}
@Oneechan69 Can you clarify your question please? Where does it say to use {}?
The use { at the top of the code block instead of just {.
Ah now I get it, the "use" should not be there for the lazy installation instructions ("use" is required for the packer plugin manager only). Could you create a PR that removes it? :)
#47