Closed Sangdol closed 2 years ago
Hey 👋🏽 Are you sure that plug installed Baleia properly?
Hi, yes I've checked it out and even tried to copy the installed Baleia to other folders to see if it works. Does it work well with Plug on your side? After reading the lua-require
section I wasn't sure if it could load a file in a custom plug folder which is ~/.vim/plugged
in my case.
I don't use Plug myself. Are you calling Plug between call plug#begin()
and call plug#end()
?
Hey,
I've found out the reason for the issue. I have to load a lua module after call plug#end()
since the plug#end()
function updates &runtimepath
.
The problem was that I was calling this function right after the Plug 'm00qek/baleia.nvim', { 'tag': 'v1.1.0' }
line like this:
Plug 'm00qek/baleia.nvim', { 'tag': 'v1.1.0' }
let s:baleia = luaeval("require('baleia').setup { }")
I'm closing the issue.
Thanks for your support.
Hello,
I'm trying Conjure for Clojure and found this plugin in the Ansi Color thread (link).
I installed Baleia with Plug
but I faced an errer while running this
luaeval("require('baleia').setup { line_starts_at = 3 }")
It seems luaeval can't find
baleia
. How could I fix this?Thanks.