Zed Editor Added

This commit is contained in:
TheFlyingFool 2025-05-15 19:25:41 -05:00
parent 2f4d89da60
commit 82a61b9c42

76
.config/zed/settings.json Normal file
View File

@ -0,0 +1,76 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"autosave": {
"after_delay": {
"milliseconds": 500
}
},
"tabs": {
"git_status": true,
"file_icons": true,
"show_diagnostics":"all"
},
"edit_predictions": {
"mode": "subtle",
"copilot": {
"proxy": null,
"proxy_no_verify": null
},
"enabled_in_text_threads": false
},
"slash_commands": {
"docs": {
"enabled": true
},
"project": {
"enabled": true
}
},
"icon_theme": "Catppuccin Frappé",
"ui_font_size": 15,
"buffer_font_size": 16,
"buffer_line_height": { "custom": 1.25 },
"wrap_guides": [80, 120],
"title_bar": {
"show_branch_icon": true
},
"indent_guides": {
"coloring": "indent_aware",
"background_coloring": "indent_aware"
},
"project_panel": {
"default_width": 185,
"entry_spacing": "standard",
"indent_size": 10
},
"outline_panel": {
"default_width": 185,
"indent_size": 10
},
"collaboration_panel": {
"default_width": 185
},
"git_panel": {
"default_width": 185,
"fallback_branch_name": "master"
},
"terminal": {
"line_height":"standard"
},
"completions":{
"words": "enabled"
},
"theme": {
"mode": "dark",
"light": "Catppuccin Macchiato",
"dark": "Catppuccin Macchiato"
}
}