start file watcher only for tui

This commit is contained in:
Dax Raad
2025-07-07 21:04:29 -04:00
parent c7a59ee2b1
commit 6100a77b85
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
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"
@@ -11,7 +10,6 @@ export async function bootstrap<T>(input: App.Input, cb: (app: App.Info) => Prom
Format.init()
ConfigHooks.init()
LSP.init()
FileWatcher.init()
return cb(app)
})