-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtui.json.example
More file actions
37 lines (37 loc) · 822 Bytes
/
tui.json.example
File metadata and controls
37 lines (37 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://opencode.ai/tui.json",
"plugin": [
[
"./plugin/opencode-vim",
{
"vim": {
"defaultMode": "insert",
"keymapTimeout": 500,
"pendingDisplayDelay": 120,
"cursorStyles": {
"insert": {
"style": "line",
"blinking": true
},
"normal": {
"style": "block",
"blinking": true
}
},
"debug": false,
"debugPath": "/home/you/.cache/opencode/opencode-vim.log",
"keymaps": {
"insert": {
"kj": "normal"
},
"normal": {
"i": "insert",
"<CR>": "submit",
"Y": "y$"
}
}
}
}
]
]
}