Skip to content

Commit

Permalink
fix(verilog): remove non-existent packages
Browse files Browse the repository at this point in the history
Closes #1202
  • Loading branch information
mehalter committed Sep 18, 2024
1 parent 2197737 commit fda1a1d
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions lua/astrocommunity/pack/verilog/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ return {
end
end,
},

{
"jay-babu/mason-null-ls.nvim",
optional = true,
opts = function(_, opts)
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "verilator" })
end,
},
{
"williamboman/mason-lspconfig.nvim",
optional = true,
Expand All @@ -27,7 +19,7 @@ return {
"WhoIsSethDaniel/mason-tool-installer.nvim",
optional = true,
opts = function(_, opts)
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "verilator", "verible" })
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "verible" })
end,
},
}

1 comment on commit fda1a1d

@scutwengxinqian
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you also update README.md?

Please sign in to comment.