19 lines
413 B
Lua
19 lines
413 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 = {},
|
|
},
|
|
}
|