feat(core): enable fff by default

This commit is contained in:
Dax Raad 2026-06-10 10:21:25 -04:00
commit 538cfaff0d
2 changed files with 2 additions and 2 deletions

View file

@ -232,4 +232,4 @@ export const fffLayer = Layer.effect(
}),
)
export const defaultLayer = Layer.unwrap(Effect.sync(() => (Flag.OPENCODE_ENABLE_FFF ? fffLayer : ripgrepLayer)))
export const defaultLayer = Layer.unwrap(Effect.sync(() => (Flag.OPENCODE_DISABLE_FFF ? ripgrepLayer : fffLayer)))