-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically Install Luarocks Packages #1
Comments
Ah yes. Should alternatively or additionally update the README to account for what needs to be installed.
On another note - this looks great! Thank you for your work @MasterTemple |
@FreeKev Thanks to Claude, I learned that the necessary packages can be automatically installed with Lazy.nvim by adding this plugin: {
"nvim-lua/plenary.nvim",
dependencies = {
{
"theHamsta/nvim_rocks",
build = "pip3 install --user hererocks && python3 -mhererocks . -j2.1.0-beta3 -r3.0.0 && cp nvim_rocks.lua lua",
config = function()
local nvim_rocks = require("nvim_rocks")
nvim_rocks.ensure_installed("lsqlite3")
nvim_rocks.ensure_installed("dkjson")
end,
},
},
}, I will update the README. |
It seems to give me this error:
but it does at least work when I dismiss the error message. I need to figure out if I should resolve the error or if I should just hide it. |
The extension should automatically install
lsqlite3
anddkjson
.The text was updated successfully, but these errors were encountered: