21 lines
571 B
Lua
21 lines
571 B
Lua
-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
|
|
|
|
-- 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 = {
|
|
disabled = {
|
|
"volar",
|
|
"vtsls",
|
|
},
|
|
},
|
|
},
|
|
}
|