From 0c2263d96304d3f389204361b6a1426922f21e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20P=C3=A1rk=C3=A1nyi?= Date: Tue, 11 Aug 2026 12:34:38 +0200 Subject: [PATCH] feat(nvim): add verible for verilog LSP --- nvim/lua/configs/lspconfig.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/configs/lspconfig.lua b/nvim/lua/configs/lspconfig.lua index a3b82dc..41b1a79 100755 --- a/nvim/lua/configs/lspconfig.lua +++ b/nvim/lua/configs/lspconfig.lua @@ -2,6 +2,6 @@ local on_attach = require("nvchad.configs.lspconfig").on_attach local capabilities = require("nvchad.configs.lspconfig").capabilities -- if you just want default config for the servers then put them in a table -local servers = { "hyprls", "lua-language-server", "clangd", "basedpyright", "vhdl_ls" } +local servers = { "hyprls", "lua-language-server", "clangd", "basedpyright", "vhdl_ls", "verible" } vim.lsp.enable(servers)