Compare commits
9 Commits
274ad69bf2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
55fd755d04 | ||
|
|
54990e9257 | ||
|
|
a83f7e7198 | ||
|
|
7a79bc93bc | ||
|
|
3f683abaaa | ||
|
|
df5cb160c6 | ||
|
|
c02d4c1b07 | ||
|
|
2cc16923cc | ||
|
|
3fb6578f81 |
9
LICENSE
Normal file
9
LICENSE
Normal 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.
|
||||
16
README.md
16
README.md
@@ -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.
|
||||
|
||||
<!--
|
||||
![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.
|
||||
-->
|
||||
|
||||
@@ -22,29 +22,40 @@
|
||||
// "ui_font_size": 19,
|
||||
// "buffer_font_size": 17,
|
||||
|
||||
"telemetry": {
|
||||
"diagnostics": true,
|
||||
"metrics": false,
|
||||
},
|
||||
// 2560x1600 (16:10) scaled to 1440x900 MacOS Monterey
|
||||
// this is so stupid on a 13.3" display...
|
||||
// "ui_font_size": 14,
|
||||
// "buffer_font_size": 13,
|
||||
|
||||
"icon_theme": "Colored Zed Icons Theme Dark",
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "One Light",
|
||||
"dark": "Aura Soft Dark",
|
||||
"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,
|
||||
},
|
||||
|
||||
@@ -56,6 +67,13 @@
|
||||
"button": "never",
|
||||
},
|
||||
|
||||
// Use Bash as default shell
|
||||
"terminal": {
|
||||
"shell": {
|
||||
"program": "bash",
|
||||
},
|
||||
},
|
||||
|
||||
// Language Overrides
|
||||
"languages": {
|
||||
"AsciiDoc": {},
|
||||
@@ -84,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,
|
||||
@@ -98,7 +117,7 @@
|
||||
},
|
||||
"SCSS": {
|
||||
"show_wrap_guides": true,
|
||||
"preferred_line_length": 70,
|
||||
"preferred_line_length": 80,
|
||||
},
|
||||
"Shell Script": {
|
||||
"show_wrap_guides": true,
|
||||
@@ -108,4 +127,19 @@
|
||||
"tab_size": 2,
|
||||
},
|
||||
},
|
||||
|
||||
"lsp": {
|
||||
"pylsp": {
|
||||
"settings": {
|
||||
"plugins": {
|
||||
"mypy": {
|
||||
"enabled": true,
|
||||
},
|
||||
"pycodestyle": {
|
||||
"enabled": false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user