I have been trying to install the plugin with packer using a simple packer config:
return require('packer').startup(function(use)
-- Packer - plugin management {{{
use 'wbthomason/packer.nvim'
-- }}}
--
use 'AckslD/muren.nvim'
-- Put this at the end after all plugins
if PACKER_BOOTSTRAP then
require('packer').sync()
end
end)
Once I save, and install, by using PackerStatus I get:
And if I use :h muren.nvim-muren.nvim, I do get the right document. However, if I try to use :MurenOpen or any other command, I get E492: Not an editor command: MurenOpen.
Hi there,
I have been trying to install the plugin with packer using a simple packer config:
Once I save, and install, by using
PackerStatus
I get:And if I use
:h muren.nvim-muren.nvim
, I do get the right document. However, if I try to use:MurenOpen
or any other command, I getE492: Not an editor command: MurenOpen
.My nvim version is:
I thought the problem was with packer, but I tested adding some other plugins and things were working just fine. I appreciate any help in advance.