feat: neovim config based on NvChad

This commit is contained in:
2024-11-02 23:21:50 +01:00
parent bddd2cdebf
commit acf7f7ca1f
11 changed files with 478 additions and 0 deletions

14
nvim/lua/configs/lspconfig.lua Executable file
View File

@@ -0,0 +1,14 @@
local on_attach = require("nvchad.configs.lspconfig").on_attach
local capabilities = require("nvchad.configs.lspconfig").capabilities
local lspconfig = require "lspconfig"
-- if you just want default config for the servers then put them in a table
local servers = { "html", "cssls", "ts_ls", "clangd", "pyright", "vhdl_ls" }
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
on_attach = on_attach,
capabilities = capabilities,
}
end