You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using this minimal config, I have it installing verilator on mason
-- save as repro.lua
-- run with nvim -u repro.lua
-- DO NOT change the paths
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "runtime", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
-- stylua: ignore
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable",
lazypath })
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
-- install plugins
local plugins = {
{ "AstroNvim/AstroNvim", import = "astronvim.plugins" },
{ "AstroNvim/astrocommunity" },
{ import = "astrocommunity.pack.verilog" },
-- add any other plugins/customizations here
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
-- add anything else here (autocommands, vim.filetype, etc.)
The pack in only 4 months old, you might need to update the astrocommunity plugin
Checklist
repro.lua
provided belowNeovim version (nvim -v)
0.10.1
Operating system/version
Arch Linux, kernel 6.10.9
Terminal/GUI
Alacritty
Describe the bug
Enabled
astrocommunity.pack.verilog
.Getting:
[ERROR Tue 10 Sep 2024 09:43:49 PM CEST] ...l/share/nvim/lazy/mason.nvim/lua/mason-registry/init.lua:79: Cannot find package "\"verilator\"".
inmason.log
Steps to Reproduce
astrocommunity.pack.verilog
:MasonLog
Expected behavior
Enabled verilog pack without installation errors.
Screenshots
No response
Additional Context
No response
Minimal configuration
No response
The text was updated successfully, but these errors were encountered: