add file watcher

This commit is contained in:
Dax Raad
2025-07-01 13:44:52 -04:00
parent 11d042be25
commit 26dcb85de1
6 changed files with 73 additions and 2 deletions

View File

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