Files
AstroConfig/lua/plugins/20-lsp.lua
2024-01-28 11:41:21 +01:00

25 lines
617 B
Lua

return {
"AstroNvim/astrolsp",
---@type AstroLSPOpts
opts = {
features = {
autoformat = false,
inlay_hints = true,
},
formatting = {
format_on_save = {
enabled = false,
},
timeout_ms = 1000,
},
-- mappings to be set up on attaching of a language server
mappings = {},
---@diagnostic disable: missing-fields
config = {
clangd = {
cmd = { "clangd", "--header-insertion=never" }, -- Disable auto includes
},
},
},
}