macmini ~/.config

This commit is contained in:
2026-01-09 10:18:02 +08:00
commit 9ffcc4caa5
12 changed files with 335 additions and 0 deletions

30
zed/keymap.json Normal file
View File

@@ -0,0 +1,30 @@
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Workspace",
"bindings": {
// "shift shift": "file_finder::Toggle"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
}
},
{
"context": "VimControl && !menu",
"bindings": {
"j": ["vim::Down", { "display_lines": true }],
"k": ["vim::Up", { "display_lines": true }],
"g j": "vim::Down",
"g k": "vim::Up"
}
}
]