mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
26 lines
722 B
Lua
26 lines
722 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/withastro/language-tools/tree/main/packages/language-server
|
|
---
|
|
--- `astro-ls` can be installed via `npm`:
|
|
--- ```sh
|
|
--- npm install -g @astrojs/language-server
|
|
--- ```
|
|
|
|
local util = require 'lspconfig.util'
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'astro-ls', '--stdio' },
|
|
filetypes = { 'astro' },
|
|
root_markers = { 'package.json', 'tsconfig.json', 'jsconfig.json', '.git' },
|
|
init_options = {
|
|
typescript = {},
|
|
},
|
|
before_init = function(_, config)
|
|
if config.init_options and config.init_options.typescript and not config.init_options.typescript.tsdk then
|
|
config.init_options.typescript.tsdk = util.get_typescript_server_path(config.root_dir)
|
|
end
|
|
end,
|
|
}
|