2026-04-04 15:48:59 +00:00
|
|
|
-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
|
2025-03-29 09:15:27 +00:00
|
|
|
|
|
|
|
|
-- AstroLSP allows you to customize the features in AstroNvim's LSP configuration engine
|
|
|
|
|
-- Configuration documentation can be found with `:h astrolsp`
|
|
|
|
|
-- NOTE: We highly recommend setting up the Lua Language Server (`:LspInstall lua_ls`)
|
|
|
|
|
-- as this provides autocomplete and documentation while editing
|
|
|
|
|
|
|
|
|
|
---@type LazySpec
|
|
|
|
|
return {
|
|
|
|
|
"AstroNvim/astrolsp",
|
|
|
|
|
---@type AstroLSPOpts
|
|
|
|
|
opts = {
|
|
|
|
|
formatting = {
|
2026-04-04 15:48:59 +00:00
|
|
|
disabled = {
|
|
|
|
|
"volar",
|
|
|
|
|
"vtsls",
|
2025-03-29 09:15:27 +00:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|