From f7ca46397db2ba6cd726299cb7718d19d0db0c07 Mon Sep 17 00:00:00 2001 From: oxypomme Date: Mon, 17 Nov 2025 14:39:40 +0100 Subject: [PATCH] feat(zed): updated settings and added keymap --- .var/app/dev.zed.Zed/config/zed/keymap.json | 16 ++++++++++++++ .var/app/dev.zed.Zed/config/zed/settings.json | 22 +++++++++---------- 2 files changed, 26 insertions(+), 12 deletions(-) create mode 100644 .var/app/dev.zed.Zed/config/zed/keymap.json diff --git a/.var/app/dev.zed.Zed/config/zed/keymap.json b/.var/app/dev.zed.Zed/config/zed/keymap.json new file mode 100644 index 0000000..ce2b9d0 --- /dev/null +++ b/.var/app/dev.zed.Zed/config/zed/keymap.json @@ -0,0 +1,16 @@ +// 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": "Editor", + "bindings": { + "ctrl-k ctrl-c": "editor::ToggleComments", + "ctrl-k ctrl-u": "editor::ToggleComments" + } + } +] diff --git a/.var/app/dev.zed.Zed/config/zed/settings.json b/.var/app/dev.zed.Zed/config/zed/settings.json index 12f51ee..f0392a9 100644 --- a/.var/app/dev.zed.Zed/config/zed/settings.json +++ b/.var/app/dev.zed.Zed/config/zed/settings.json @@ -7,6 +7,7 @@ // custom settings, run `zed: open default settings` from the // command palette (cmd-shift-p / ctrl-shift-p) { + "disable_ai": true, "vim_mode": false, "telemetry": { "metrics": false, @@ -109,24 +110,21 @@ "languages": { "Vue.js": { - "formatter": { - "code_actions": { - "source.fixAll.eslint": true - } + "format_on_save": "off", + "code_actions_on_format": { + "source.fixAll.eslint": true } }, "JavaScript": { - "formatter": { - "code_actions": { - "source.fixAll.eslint": true - } + "format_on_save": "off", + "code_actions_on_format": { + "source.fixAll.eslint": true } }, "TypeScript": { - "formatter": { - "code_actions": { - "source.fixAll.eslint": true - } + "format_on_save": "off", + "code_actions_on_format": { + "source.fixAll.eslint": true } }, "YAML": {