feat: enable lsp and add neovim/nvim-lspconfig

This commit is contained in:
2025-10-07 00:37:17 +02:00
parent dee450cff7
commit 1fdea98921
2 changed files with 17 additions and 0 deletions

16
lua/plugins/lsp.lua Normal file
View File

@@ -0,0 +1,16 @@
add, now, later = MiniDeps.add, MiniDeps.now, MiniDeps.later
later(function()
add("neovim/nvim-lspconfig")
vim.lsp.enable({
"pyright",
"ts_ls",
"rust_analyzer",
"clangd",
"gopls",
"ruff",
"stylua",
"lua_ls",
})
end)