initial commit

This commit is contained in:
2025-04-11 00:10:12 -04:00
commit 5f77118d9d
2 changed files with 69 additions and 0 deletions

40
keymap.json Normal file
View File

@@ -0,0 +1,40 @@
// 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"]
"ctrl-b": "workspace::ToggleLeftDock",
", ,": "workspace::Save",
"space c": "pane::CloseActiveItem",
"space w s": "pane::SplitHorizontal",
"space w v": "pane::SplitVertical",
"space h": "workspace::ActivatePaneLeft",
"space j": "workspace::ActivatePaneDown",
"space k": "workspace::ActivatePaneUp",
"space l": "workspace::ActivatePaneRight",
"g o": "editor::Format",
"ctrl-c": "editor::Copy",
"ctrl-x": "editor::Cut",
"ctrl-v": "editor::Paste",
"super-c": "editor::Copy",
"super-x": "editor::Cut",
"super-v": "editor::Paste",
"super-e": "pane::ActivatePrevItem",
"super-u": "pane::ActivateNextItem"
}
}
]
// Ideas: https://gist.github.com/adibhanna/896257e6c2c501186221312fd9fd1b9c

29
settings.json Normal file
View File

@@ -0,0 +1,29 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"assistant": {
"default_model": {
"provider": "ollama",
"model": "deepseek-coder:6.7b"
},
"version": "2"
},
"telemetry": {
"metrics": false,
"diagnostics": false
},
"vim_mode": true,
"ui_font_size": 16,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Gruvbox Dark Hard"
}
}