add systemverilog lsp and formatter

This commit is contained in:
edwloef 2025-01-18 11:34:41 +01:00 committed by CJ van den Berg
parent da812e05d4
commit 942053ff0a
3 changed files with 14 additions and 2 deletions

View file

@ -450,6 +450,16 @@ pub const swift = .{
.formatter = .{"swift-format"},
};
pub const verilog = .{
.description = "SystemVerilog",
.extensions = .{ "sv", "svh" },
.comment = "//",
.highlights = "nvim-treesitter/queries/verilog/highlights.scm",
.injections = "nvim-treesitter/queries/verilog/injections.scm",
.language_server = .{"verible-verilog-ls"},
.formatter = .{ "verible-verilog-format", "-" }
};
pub const toml = .{
.description = "TOML",
.extensions = .{ "toml", "ini" },