E492 not an editor command :Glow #137
-
I am using lazy vim plugin manager. I place the following into plugins/glow.lua return {
{
"ellisonleao/glow.nvim",
config = function()
require("glow").setup({
cmd = "Glow",
style = "dark",
width = 120,
})
end,
},
} Using :Lazy shows the plugin as Installed but not loaded (I presume until glow cmd is used) Plz help. I am fairly new to lua and neovim. Mind you I have successfully configured about 15 other plugins. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Seems that you have the entry
return {
{
"ellisonleao/glow.nvim",
cmd = "Glow",
config = function()
require("glow").setup({
style = "dark",
width = 120,
})
end,
},
} Note For more information, check the entries in plugin spec section of lazy.nvim |
Beta Was this translation helpful? Give feedback.
Seems that you have the entry
cmd
in the wrong place, should be outside theconfig
entry.Note
For more information, check the entries in plugin spec section of lazy.nvim