nvim/lsp/astro.lua 381 B raw
1
return {
2
  cmd = {
3
    "astro-ls", "--stdio"
4
  },
5
  filetypes = {
6
    "astro",
7
  },
8
  root_markers = { "package.json", "tsconfig.json", "jsconfig.json", ".git" },
9
  single_file_support = true,
10
  log_level = vim.lsp.protocol.MessageType.Warning,
11
  init_options = {
12
    typescript = {
13
      tsdk = "/Users/stevedylandev/.bun/install/global/node_modules/typescript/lib"
14
    },
15
  },
16
}