1
0

zed config

This commit is contained in:
2025-02-07 19:43:31 +01:00
parent bf8721a344
commit e980176aca
2 changed files with 54 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
// 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"
//"ctrl-escape": "workspace::NewTerminal",
"ctrl-escape": "terminal_panel::ToggleFocus"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
}
}
]
+31
View File
@@ -0,0 +1,31 @@
// 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": "zed.dev",
"model": "claude-3-5-sonnet-latest"
},
"version": "2"
},
"vim_mode": true,
"buffer_font_family": "BlexMono Nerd Font Mono",
"ui_font_size": 16,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "Ayu Dark",
"dark": "One Dark"
},
"languages": {
"GDScript": {
"hard_tabs": true
}
}
}