Skip to content

Commit 29de3df

Browse files
committed
chore: tweaks
1 parent 5ded7a5 commit 29de3df

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

nix/files/AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ Reduces state root time from 120ms to 35ms on 16-core machines.
282282
- Commit secrets, API keys, or sensitive information
283283
- Break existing functionality without proper testing
284284
- Ignore linting or formatting tools when available
285+
- Never use emojis unless asked to do so
285286

286287
### ALWAYS
287288

nix/modules/opencode.nix

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ in
88
xdg.configFile."opencode/opencode.json".text = builtins.toJSON {
99
"$schema" = "https://opencode.ai/config.json";
1010
disabled_providers = [ "openai" "gemini" ];
11+
"keybinds" = {
12+
"messages_page_up" = "ctrl+u";
13+
"messages_page_down" = "ctrl+d";
14+
"messages_half_page_up" = "ctrl+alt+u";
15+
"messages_half_page_down" = "ctrl+alt+d";
16+
"messages_previous" = "ctrl+alt+up";
17+
"messages_next" = "ctrl+alt+down";
18+
};
1119
theme = "tmm";
1220
};
1321

@@ -234,8 +242,8 @@ in
234242
light = "lightOrange";
235243
};
236244
syntaxType = {
237-
dark = "darkYellow";
238-
light = "lightYellow";
245+
dark = "darkFgBase";
246+
light = "lightFgBase";
239247
};
240248
syntaxOperator = {
241249
dark = "darkOrange";

0 commit comments

Comments
 (0)