dotfiles/.config/zed/settings.json

166 lines
5.7 KiB
JSON

// 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)
{
"assistant": {
"default_model": {
"provider": "ollama",
"model": "qwen2.5-coder:3b"
},
"version": "2"
},
"vim_mode": true,
"telemetry": {
"metrics": false,
"diagnostics": false
},
"relative_line_numbers": true,
"ui_font_size": 12,
"buffer_font_size": 12,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Ayu Dark"
},
"tabs": {
"file_icons": true
},
"experimental.theme_overrides": {
// "border": "#2d313400",
// "border.variant": "#3d485150",
// "border.focused": "#3d4851",
// "border.selected": "#3d4851",
"border.transparent": "#3d485100",
// "border.disabled": "#3d485150",
// "elevated_surface.background": "#2d3134",
"surface.background": "#373a3f",
"background": "#2d3134dd",
"background.appearance": "blurred",
"element.background": "#373a3f",
"element.hover": "#3d485150",
"element.active": "#3d485175",
"element.selected": "#7ec2c2",
"element.disabled": "#3d485150",
// "drop_target.background": "#88c0d099",
// "ghost_element.background": null,
// "ghost_element.hover": "#3d4851",
// "ghost_element.active": null,
// "ghost_element.selected": "#373a3f",
// "ghost_element.disabled": null,
// "text": "#f6f7f9",
// "text.muted": "#f6f7f985",
// "text.placeholder": "#f6f7f950",
// "text.disabled": "#f6f7f950",
// "text.accent": "#ffffff",
// "icon": null,
// "icon.muted": null,
// "icon.disabled": null,
// "icon.placeholder": null,
// "icon.accent": null,
"status_bar.background": "#2d313400",
// "title_bar.background": "#2d313400",
"toolbar.background": "#373a3f",
"tab_bar.background": "#2d313400",
// "tab.inactive_background": "#2d313400",
// "tab.active_background": "#373a3f",
// "search.match_background": null,
"panel.background": "#2d313400",
"panel.focused_border": null,
"pane.focused_border": null,
// "scrollbar_thumb.background": "#3d485199",
// "scrollbar.thumb.hover_background": "#3d4851aa",
"scrollbar.thumb.border": "#3d485100",
"scrollbar.track.background": "#373a3f",
// "scrollbar.track.border": "#3d485100",
// "editor.foreground": "#f5f6f8",
"editor.background": "#2d313400",
"editor.gutter.background": "#2d313400",
"editor.subheader.background": null,
// "editor.active_line.background": "#3d485199",
// "editor.highlighted_line.background": null,
// "editor.line_number": "#f5f6f850",
// "editor.active_line_number": "#f5f6f8aa",
"editor.invisible": null
// "editor.wrap_guide": "#3d4851",
// "editor.active_wrap_guide": "#3d4851",
// "editor.document_highlight.read_background": null,
// "editor.document_highlight.write_background": null
// "terminal.background": "#2d313400",
// "terminal.foreground": null,
// "terminal.bright_foreground": null,
// "terminal.dim_foreground": null,
// "terminal.ansi.black": "#3d4851",
// "terminal.ansi.bright_black": "#4c566a",
// "terminal.ansi.dim_black": null,
// "terminal.ansi.red": "#bf616a",
// "terminal.ansi.bright_red": "#bf616a",
// "terminal.ansi.dim_red": null,
// "terminal.ansi.green": "#9eca99",
// "terminal.ansi.bright_green": "#9eca99",
// "terminal.ansi.dim_green": null,
// "terminal.ansi.yellow": "#ecc285",
// "terminal.ansi.bright_yellow": "#ecc285",
// "terminal.ansi.dim_yellow": null,
// "terminal.ansi.blue": "#7faad5",
// "terminal.ansi.bright_blue": "#7faad5",
// "terminal.ansi.dim_blue": null,
// "terminal.ansi.magenta": "#b48ead",
// "terminal.ansi.bright_magenta": "#b48ead",
// "terminal.ansi.dim_magenta": null,
// "terminal.ansi.cyan": "#7ec2c2",
// "terminal.ansi.bright_cyan": "#8fbcbb",
// "terminal.ansi.dim_cyan": null,
// "terminal.ansi.white": "#e5e9f0",
// "terminal.ansi.bright_white": "#eceff4",
// "terminal.ansi.dim_white": null,
// "link_text.hover": null,
// "conflict": "#b48ead",
// "conflict.background": "#2d3134",
// "conflict.border": "#b48ead",
// "created": "#9eca99",
// "created.background": "#2d3134",
// "created.border": "#9eca99",
// "deleted": "#bf616a",
// "deleted.background": "#2d3134",
// "deleted.border": "#bf616a",
// "error": "#bf616a",
// "error.background": "#2d3134",
// "error.border": "#bf616a",
// "hidden": "#d8dee966",
// "hidden.background": "#2d3134",
// "hidden.border": "#d8dee966",
// "hint": "#969696ff",
// "hint.background": "#2d3134",
// "hint.border": "#969696ff",
// "ignored": "#d8dee966",
// "ignored.background": "#2d3134",
// "ignored.border": "#d8dee966",
// "info": "#7faad5",
// "info.background": "#2d3134",
// "info.border": "#7faad5",
// "modified": "#ecc285",
// "modified.background": "#2d3134",
// "modified.border": "#ecc285",
// "predictive": "#7ec2c2",
// "predictive.background": "#2d3134",
// "predictive.border": "#7ec2c2",
// "renamed": "#ecc285",
// "renamed.background": "#2d3134",
// "renamed.border": "#ecc285",
// "success": "#9eca99",
// "success.background": "#2d3134",
// "success.border": "#9eca99",
// "unreachable": "#bf616a",
// "unreachable.background": "#2d3134",
// "unreachable.border": "#bf616a",
// "warning": "#ecc285",
// "warning.background": "#2d3134",
// "warning.border": "#ecc285"
}
}