Compare commits
2 Commits
a83f7e7198
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
55fd755d04 | ||
|
|
54990e9257 |
@@ -2,13 +2,16 @@ Pretty self-explanitory.
|
|||||||
|
|
||||||
These are my settings for Zed to remove all of the AI, Vibe Coding junk.
|
These are my settings for Zed to remove all of the AI, Vibe Coding junk.
|
||||||
|
|
||||||
|
<!--
|
||||||
![TIP]
|
![TIP]
|
||||||
This settings format is not up-to-date. You may however still use it on newer versions by using Zed's built-in settings updater.
|
This settings format is not up-to-date. You may however still use it on newer versions by using Zed's built-in settings updater.
|
||||||
|
-->
|
||||||
|
|
||||||
Some of these settings are subject to my personal preference of course. Themes, preferred line wrap positions, showing rules, workspace restore, font sizes, diagnostic telemetry, tab sizes, dock positions, etc.
|
Some of these settings are subject to my personal preference of course. Themes, preferred line wrap positions, showing rules, workspace restore, font sizes, diagnostic telemetry, tab sizes, dock positions, etc.
|
||||||
|
|
||||||
With Zed under continued heavy development, and me losing my settings on both my coding devices once already, I figured I should have a remote git on hand.
|
With Zed under continued heavy development, and me losing my settings on both my coding devices once already, I figured I should have a remote git on hand.
|
||||||
|
|
||||||
|
<!--
|
||||||
![NOTE]
|
![NOTE]
|
||||||
It is last formatted for Zed v0.189.5 as the v0.190.X series introduced bugs affecting the git panel (and by extension diffs), an entirely non-functional debugger (which is more so just annoying; I was looking forward to it), and five-second wait times to save anything, that made Zed >= v0.19X unusable for me on my Linux systems. Anyway, I'm stuck using v0.189.5.
|
It is last formatted for Zed v0.189.5 as the v0.190.X series introduced bugs affecting the git panel (and by extension diffs), an entirely non-functional debugger (which is more so just annoying; I was looking forward to it), and five-second wait times to save anything, that made Zed >= v0.19X unusable for me on my Linux systems. Anyway, I'm stuck using v0.189.5.
|
||||||
|
|
||||||
@@ -17,3 +20,4 @@ Please be aware that collaboration is no longer supported in Zed v0.189.5.
|
|||||||
|
|
||||||
![CAUTION]
|
![CAUTION]
|
||||||
Although these settings should entirely prevent CVE-2025-55012 by just disabling all AI systems, I make no guarantee. For a guarantee, use Zed >=v0.197.3, apply these settings, and use the built-in settings updater in Zed.
|
Although these settings should entirely prevent CVE-2025-55012 by just disabling all AI systems, I make no guarantee. For a guarantee, use Zed >=v0.197.3, apply these settings, and use the built-in settings updater in Zed.
|
||||||
|
-->
|
||||||
|
|||||||
@@ -27,10 +27,6 @@
|
|||||||
// "ui_font_size": 14,
|
// "ui_font_size": 14,
|
||||||
// "buffer_font_size": 13,
|
// "buffer_font_size": 13,
|
||||||
|
|
||||||
"telemetry": {
|
|
||||||
"diagnostics": true,
|
|
||||||
"metrics": false,
|
|
||||||
},
|
|
||||||
"icon_theme": "Colored Zed Icons Theme Dark",
|
"icon_theme": "Colored Zed Icons Theme Dark",
|
||||||
"theme": {
|
"theme": {
|
||||||
"mode": "system",
|
"mode": "system",
|
||||||
@@ -39,17 +35,27 @@
|
|||||||
},
|
},
|
||||||
"restore_on_startup": "last_workspace",
|
"restore_on_startup": "last_workspace",
|
||||||
"soft_wrap": "preferred_line_length",
|
"soft_wrap": "preferred_line_length",
|
||||||
|
|
||||||
|
// Move some panels.
|
||||||
"outline_panel": {
|
"outline_panel": {
|
||||||
"dock": "right",
|
"dock": "right",
|
||||||
},
|
},
|
||||||
|
"debugger": {
|
||||||
|
"dock": "left",
|
||||||
|
"button": true,
|
||||||
|
},
|
||||||
|
|
||||||
|
// Remove telemetry.
|
||||||
|
"telemetry": {
|
||||||
|
"diagnostics": true,
|
||||||
|
"metrics": false,
|
||||||
|
},
|
||||||
|
|
||||||
// Remove AI Crap
|
// Remove AI Crap
|
||||||
"features": {
|
"features": {
|
||||||
"edit_prediction_provider": "none",
|
"edit_prediction_provider": "none",
|
||||||
"copilot": false,
|
|
||||||
},
|
},
|
||||||
"agent": {
|
"agent": {
|
||||||
"version": "1",
|
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -96,7 +102,7 @@
|
|||||||
"language_server": { "name": "ruff" },
|
"language_server": { "name": "ruff" },
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"language_servers": ["ruff", "pyright"],
|
"language_servers": ["!pylsp", "pyright", "!ruff"],
|
||||||
"show_wrap_guides": true,
|
"show_wrap_guides": true,
|
||||||
"preferred_line_length": 80,
|
"preferred_line_length": 80,
|
||||||
"soft_wrap": "none",
|
"soft_wrap": "none",
|
||||||
@@ -122,8 +128,18 @@
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
"debugger": {
|
"lsp": {
|
||||||
"dock": "left",
|
"pylsp": {
|
||||||
"button": true,
|
"settings": {
|
||||||
|
"plugins": {
|
||||||
|
"mypy": {
|
||||||
|
"enabled": true,
|
||||||
|
},
|
||||||
|
"pycodestyle": {
|
||||||
|
"enabled": false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user