feat(lsp): add bash-language-server to builtin servers (#112)

This commit is contained in:
Matthew DeGarmo
2025-12-18 20:21:13 -06:00
committed by GitHub
parent c37d41edb2
commit 662bae2454

View File

@@ -109,6 +109,10 @@ export const BUILTIN_SERVERS: Record<string, Omit<LSPServerConfig, "id">> = {
command: ["astro-ls", "--stdio"],
extensions: [".astro"],
},
"bash-ls": {
command: ["bash-language-server", "start"],
extensions: [".sh", ".bash", ".zsh", ".ksh"],
},
jdtls: {
command: ["jdtls"],
extensions: [".java"],