diff --git a/zed/keymap.json b/zed/keymap.json index 35a3caf..f5dda9c 100644 --- a/zed/keymap.json +++ b/zed/keymap.json @@ -5,7 +5,7 @@ // // To see the default key bindings run `zed: open default keymap` // from the command palette. -// This file is to be used from vs-code keymap initial setup (Ctrl+k - Ctrl+KEY shortcuts working) +// This file is to be used from VSCode keymap base setup (Ctrl+K - Ctrl+SOMEKEY shortcuts working) [ { "context": "Workspace", diff --git a/zed/settings.json b/zed/settings.json new file mode 100644 index 0000000..0887324 --- /dev/null +++ b/zed/settings.json @@ -0,0 +1,41 @@ +// 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) +{ + "indent_guides": { + "coloring": "indent_aware" + }, + "show_edit_predictions": false, + "disable_ai": false, + "project_panel": { + "dock": "right", + }, + "git_panel": { + "dock": "right", + }, + "outline_panel": { + "dock": "right", + }, + "collaboration_panel": { + "dock": "right", + }, + "terminal": { + "env": {}, + }, + "format_on_save": "off", + "buffer_font_family": "Fira Mono", + "linked_edits": true, + "base_keymap": "VSCode", + "ui_font_size": 14, + "buffer_font_size": 16.0, + "theme": { + "mode": "system", + "light": "One Light", + "dark": "Palenight Theme", + }, +}