optimistically boot lsp servers

This commit is contained in:
Dax Raad
2025-06-30 16:45:13 -04:00
parent c573270e66
commit 9ad1687f04
4 changed files with 85 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
import { App } from "../app/app"
import { ConfigHooks } from "../config/hooks"
import { Format } from "../format"
import { LSP } from "../lsp"
import { Share } from "../share/share"
export async function bootstrap<T>(
@@ -11,6 +12,7 @@ export async function bootstrap<T>(
Share.init()
Format.init()
ConfigHooks.init()
LSP.init()
return cb(app)
})