We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14eacb4 commit e287569Copy full SHA for e287569
packages/opencode/src/effect/app-runtime.ts
@@ -51,7 +51,7 @@ import * as Effect from "effect/Effect"
51
52
// Adjusts the default Config layer to ensure that plugins are always initialised before
53
// any other layers read the current config
54
-const PluginPriorityConfigLayer = Layer.unwrap(
+const ConfigWithPluginPriority = Layer.unwrap(
55
Effect.gen(function* () {
56
const configSvc = yield* Config.Service
57
const pluginSvc = yield* Plugin.Service
@@ -71,7 +71,7 @@ export const AppLayer = Layer.mergeAll(
71
Bus.defaultLayer,
72
Auth.defaultLayer,
73
Account.defaultLayer,
74
- PluginPriorityConfigLayer,
+ ConfigWithPluginPriority,
75
Git.defaultLayer,
76
Ripgrep.defaultLayer,
77
File.defaultLayer,
0 commit comments