Compare commits

..

6 Commits

Author SHA1 Message Date
Olivia Brooks
55fd755d04 Update zed_settings.jsonc 2025-10-03 15:06:27 -04:00
Cutieguwu
54990e9257 Update for v0.201.8 2025-08-31 10:08:27 -04:00
Cutieguwu
a83f7e7198 Create LICENSE 2025-08-18 12:35:31 -04:00
Cutieguwu
7a79bc93bc Update zed_settings.jsonc 2025-08-18 12:35:28 -04:00
Cutieguwu
3f683abaaa Update README.md 2025-08-18 12:35:20 -04:00
Cutieguwu
df5cb160c6 Update zed_settings.jsonc 2025-07-12 12:22:06 -04:00
3 changed files with 55 additions and 12 deletions

9
LICENSE Normal file
View File

@@ -0,0 +1,9 @@
MIT License
Copyright (c) 2025 Olivia Brooks
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -2,6 +2,22 @@ Pretty self-explanitory.
These are my settings for Zed to remove all of the AI, Vibe Coding junk.
<!--
![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.
-->
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]
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.
![WARNING]
Please be aware that collaboration is no longer supported in Zed v0.189.5.
![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.
-->

View File

@@ -27,29 +27,35 @@
// "ui_font_size": 14,
// "buffer_font_size": 13,
"telemetry": {
"diagnostics": true,
"metrics": false,
},
"icon_theme": "Colored Zed Icons Theme Dark",
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Dracula",
"dark": "Dracula Solid",
},
"restore_on_startup": "last_workspace",
"soft_wrap": "preferred_line_length",
// Move some panels.
"outline_panel": {
"dock": "right",
},
"debugger": {
"dock": "left",
"button": true,
},
// Remove telemetry.
"telemetry": {
"diagnostics": true,
"metrics": false,
},
// Remove AI Crap
"features": {
"edit_prediction_provider": "none",
"copilot": false,
},
"agent": {
"version": "1",
"enabled": false,
},
@@ -96,9 +102,10 @@
"language_server": { "name": "ruff" },
},
],
"language_servers": ["pyright", "ruff"],
"language_servers": ["!pylsp", "pyright", "!ruff"],
"show_wrap_guides": true,
"preferred_line_length": 80,
"soft_wrap": "none",
},
"RON": {
"show_wrap_guides": true,
@@ -110,7 +117,7 @@
},
"SCSS": {
"show_wrap_guides": true,
"preferred_line_length": 70,
"preferred_line_length": 80,
},
"Shell Script": {
"show_wrap_guides": true,
@@ -121,7 +128,18 @@
},
},
"experimental.theme_overrides": {
"background.appearance": "blurred",
"lsp": {
"pylsp": {
"settings": {
"plugins": {
"mypy": {
"enabled": true,
},
"pycodestyle": {
"enabled": false,
},
},
},
},
},
}