diff options
| author | Martin Fischer <martin@push-f.com> | 2026-05-16 10:35:06 +0200 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-05-17 10:25:46 +0200 |
| commit | 23e9a93add2dd5efdaace981ae9eea625c81106a (patch) | |
| tree | fc8bde19418c5f39ddcf77225017d70b49e8eb0d | |
| parent | 3193a5712894eea96a15c44c6867fdca0da0d168 (diff) | |
deps: update zed 0.218.6 -> 1.1.7
ESLint didn't work. With the new version it works.
| -rw-r--r-- | nixos/profiles/workstation/dev.nix | 2 | ||||
| -rw-r--r-- | user/zed/settings.json | 17 |
2 files changed, 13 insertions, 6 deletions
diff --git a/nixos/profiles/workstation/dev.nix b/nixos/profiles/workstation/dev.nix index e73309d..3182cc5 100644 --- a/nixos/profiles/workstation/dev.nix +++ b/nixos/profiles/workstation/dev.nix @@ -24,7 +24,7 @@ gcc # rustc fails if cc linker isn't found chromium - zed-editor + pkgs-unstable.zed-editor vscodium # I'm installing extensions via my install-imperative script. platformio diff --git a/user/zed/settings.json b/user/zed/settings.json index b1594ca..6d8d3f9 100644 --- a/user/zed/settings.json +++ b/user/zed/settings.json @@ -89,8 +89,8 @@ "diagnostics": false, "metrics": false }, - "features": { - "edit_prediction_provider": "none" + "edit_predictions": { + "provider": "none" }, "agent": { "enabled": false, @@ -99,7 +99,14 @@ "collaboration_panel": { "button": false }, - "notification_panel": { - "button": false - } + "cli_default_open_behavior": "new_window", + "project_panel": { + "dock": "left" + }, + "outline_panel": { + "dock": "left" + }, + "git_panel": { + "dock": "left" + }, } |
