From 570cd4c9e6ef729d30937f46c2ab346a71b82c73 Mon Sep 17 00:00:00 2001 From: oxypomme Date: Sun, 10 Aug 2025 10:27:57 +0200 Subject: [PATCH] feat: added zed (flatpak) configuration --- .var/app/dev.zed.Zed/config/zed/settings.json | 136 ++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 .var/app/dev.zed.Zed/config/zed/settings.json diff --git a/.var/app/dev.zed.Zed/config/zed/settings.json b/.var/app/dev.zed.Zed/config/zed/settings.json new file mode 100644 index 0000000..ccfbb91 --- /dev/null +++ b/.var/app/dev.zed.Zed/config/zed/settings.json @@ -0,0 +1,136 @@ +// 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) +{ + "vim_mode": false, + "telemetry": { + "metrics": false, + "diagnostics": false + }, + + "base_keymap": "VSCode", + + "theme": "One Dark - Darkened", + "icon_theme": "Catppuccin Mocha", + "ui_font_size": 14, + "buffer_font_size": 12, + "buffer_font_family": "FiraCode Nerd Font Mono", + "buffer_line_height": "standard", + "buffer_font_features": { + "calt": true + }, + + "bottom_dock_layout": "left_aligned", + + "terminal": { + "font_family": "FiraCode Nerd Font Mono", + "font_size": 12, + "line_height": "standard", + "toolbar": { + "breadcrumbs": false + }, + "font_features": { + "calt": true + } + }, + + "minimap": { + "show": "auto" + }, + + "tabs": { + "file_icons": true, + "git_status": true, + "show_diagnostics": "all" + }, + + "project_panel": { + "entry_spacing": "standard" + }, + + "agent": { + "default_profile": "ask", + "default_model": { + "provider": "zed.dev", + "model": "claude-sonnet-4" + }, + "button": true + }, + "show_edit_predictions": true, + + "collaboration_panel": { + "button": false + }, + + "notification_panel": { + "button": false + }, + + "title_bar": { + "show_branch_icon": true + }, + + "tab_bar": { + "show_nav_history_buttons": false + }, + + "toolbar": { + "agent_review": false, + "code_actions": true + }, + + "diagnostics": { + "inline": { + "enabled": true, + "max_severity": "warning" + } + }, + + "inlay_hints": { + "enabled": true, + "show_type_hints": false + }, + + "indent_guides": { + "coloring": "indent_aware" + }, + + "tab_size": 2, + "show_whitespaces": "trailing", + "wrap_guides": [110], + + "inline_code_actions": false, + "relative_line_numbers": true, + + "languages": { + "Vue.js": { + "formatter": { + "code_actions": { + "source.fixAll.eslint": true + } + } + }, + "JavaScript": { + "formatter": { + "code_actions": { + "source.fixAll.eslint": true + } + } + }, + "TypeScript": { + "formatter": { + "code_actions": { + "source.fixAll.eslint": true + } + } + }, + "YAML": { + "format_on_save": "off" + } + } +}