zed config: settings, keymap, Pure Black theme

This commit is contained in:
arrelin
2026-06-23 15:54:06 +03:00
commit c50f7b182b
4 changed files with 290 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
// 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 && vim_mode == insert",
"bindings": {
// "j k": "vim::NormalBefore"
},
},
{
"context": "Pane",
"bindings": {
"alt-4": "outline_panel::ToggleFocus"
}
},
{
"context": "Pane",
"unbind": {
"alt-7": "outline_panel::ToggleFocus"
}
},
{
"context": "Workspace",
"unbind": {
"alt-7": "outline_panel::ToggleFocus"
}
},
{
"context": "Workspace || Editor",
"bindings": {
"alt-3": "terminal_panel::Toggle"
}
},
{
"context": "Workspace || Editor",
"unbind": {
"alt-f12": "terminal_panel::Toggle"
}
},
{
"bindings": {
"alt-4": "git_panel::Toggle"
}
},
{
"bindings": {
"alt-2": "outline_panel::Toggle"
}
},
{
"bindings": {
"alt-3": "terminal_panel::ToggleFocus"
}
}
]