neovim-confs/lua/custom/configs/lspconfig.lua

50 lines
1015 B
Lua
Raw Normal View History

2024-01-19 22:34:37 +01:00
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
2024-01-20 16:22:40 +01:00
local servers = {
"html",
"cssls",
"tsserver",
"clangd",
"pyright",
2024-02-16 15:53:23 +01:00
-- "rust_analyzer", -- rustaceanvim wants to do that, but the builtin thing has better integration!
2024-01-20 16:22:40 +01:00
"bashls",
"cmake",
2024-03-11 14:38:16 +01:00
"yamlls",
2024-01-20 16:22:40 +01:00
}
2024-01-19 22:34:37 +01:00
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
on_attach = on_attach,
capabilities = capabilities,
}
end
2024-02-16 15:53:23 +01:00
lspconfig.rust_analyzer.setup {
on_attach = on_attach,
settings = {
["rust-analyzer"] = {
check = {
command = "clippy",
},
imports = {
granularity = {
group = "module",
},
prefix = "self",
},
cargo = {
buildScripts = {
enable = true,
},
},
procMacro = {
enable = true,
},
},
},
}