1
0
Fork 0
dotfiles/conf.d/astronvim/plugins/astrolsp.lua
2026-03-09 11:00:40 +01:00

23 lines
494 B
Lua

---@type LazySpec
return {
"AstroNvim/astrolsp",
---@type AstroLSPOpts
opts = {
features = {
autoformat = true,
codelens = true,
semantic_tokens = true,
},
formatting = {
format_on_save = {
enabled = true,
},
timeout_ms = 1000, -- default format timeout
},
servers = {
"ruff",
"lua_ls",
"pyright",
},
},
}