VHDL LSP integration update
Some checks failed
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 42s

This commit is contained in:
nichkara
2025-10-22 20:38:43 +02:00
parent 19b0ce44bc
commit 7b3f516848
6 changed files with 40 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ local linters = {
tex = { "proselint" },
plaintex = { "proselint" },
ada = { "gnat", "gcc", "adals", "cspell" },
vhdl = {},
}
local fixers = {
@@ -30,6 +31,8 @@ local fixers = {
vim.g.ale_linters = linters
vim.g.ale_fix_on_save = 0
vim.g.ale_fixers = fixers
-- vim.g.ale_vhdl_ghdl_options = "--std=08 --workdir=src/"
vim.keymap.set("n", "<leader>lf", ":ALEFix<CR>")
vim.keymap.set("n", "<leader>lp", ":ALEFindReferences<CR>")
vim.keymap.set("n", "<leader>lr", ":ALEFindReferences<CR>")
vim.keymap.set("n", "<leader>ln", ":ALENext<CR>")