feat: add neovim config w/ nvchad v2.0

This commit is contained in:
grassblock 2024-12-14 14:46:38 +08:00
parent 8a5ee43828
commit e573ccda4b
9 changed files with 256 additions and 0 deletions

View file

@ -0,0 +1,17 @@
local on_attach = require("plugins.configs.lspconfig").on_attach
local capabilities = require("plugins.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", "tsserver", "clangd" }
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
on_attach = on_attach,
capabilities = capabilities,
}
end
--
-- lspconfig.pyright.setup { blabla}