chore: updated astro lsp eb0e2518
Steve · 2026-03-16 22:06 1 file(s) · +9 −8
nvim/lsp/astro.lua +9 −8
1 1
return {
2 -
	cmd = {
3 -
		"astro-ls", "--stdio"
4 -
	},
5 -
	filetypes = {
6 -
		"astro",
7 -
	},
8 -
	single_file_support = true,
9 -
	log_level = vim.lsp.protocol.MessageType.Warning,
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,
10 11
  init_options = {
11 12
    typescript = {
12 13
      tsdk = "/Users/stevedylandev/.bun/install/global/node_modules/typescript/lib"