diff --git a/.config/zed/keymap.json b/.config/zed/keymap.json new file mode 100644 index 0000000..c946fa4 --- /dev/null +++ b/.config/zed/keymap.json @@ -0,0 +1,9 @@ +[ + { + "context": "Workspace", + "bindings": { + "cmd-t": "workspace::ToggleBottomDock", + "ctrl-tab" : "pane::ActivatePrevItem" + } + } +] diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..e0700a7 --- /dev/null +++ b/.config/zed/settings.json @@ -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 the `open default settings` command +// from the command palette or from `Zed` application menu. +{ + "base_keymap": "VSCode", + "theme": "Monokai", + "ui_font_size": 16, + "ui_font_family": "SF Pro", + "buffer_font_size": 16, + "vim_mode": true, + "hard_tabs": true, + "format_on_save": "off", + "font_family": "Iosevka", + "buffer_font_family" : "Iosevka", + "buffer_font_features": { + "calt": false + }, + "tab_size": 4, + "telemetry": { + "diagnostics": false, + "metrics": false + }, + "relative_line_numbers" : true, + "diagnostics" : false, + "hour_format" : "hour24" +}