Created
April 25, 2026 12:56
-
-
Save maxktz/c9b990d07fd5b04ff079bea3f4605b78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| // 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 the `open default settings` command | |
| // from the command palette or from `Zed` application menu. | |
| { | |
| // "features": { | |
| // "edit_prediction_provider": "copilot", | |
| // }, | |
| "agent_servers": { | |
| "cursor": { | |
| "type": "registry" | |
| }, | |
| "codex-acp": { | |
| "type": "registry" | |
| }, | |
| "claude-acp": { | |
| "type": "registry" | |
| } | |
| }, | |
| "collaboration_panel": { | |
| "dock": "right" | |
| }, | |
| "edit_predictions": { | |
| "provider": "copilot" | |
| }, | |
| "lsp": { | |
| "vtsls": { | |
| "settings": { | |
| "typescript": { | |
| "updateImportsOnFileMove": { | |
| "enabled": "always" | |
| } | |
| }, | |
| "javascript": { | |
| "updateImportsOnFileMove": { | |
| "enabled": "always" | |
| } | |
| } | |
| }, | |
| "enable_lsp_tasks": true | |
| }, | |
| "oxlint": { | |
| "initialization_options": { | |
| "settings": { | |
| "configPath": null, | |
| "run": "onType", | |
| "disableNestedConfig": false, | |
| "fixKind": "safe_fix", | |
| "unusedDisableDirectives": "deny" | |
| } | |
| } | |
| }, | |
| "oxfmt": { | |
| "initialization_options": { | |
| "settings": { | |
| "fmt.configPath": null, | |
| "run": "onSave" | |
| } | |
| } | |
| } | |
| }, | |
| "languages": { | |
| "CSS": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "GraphQL": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "Handlebars": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "HTML": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "JavaScript": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| }, | |
| { | |
| "code_action": "source.fixAll.oxc" | |
| } | |
| ] | |
| }, | |
| "JSON": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "JSON5": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "JSONC": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "Less": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "Markdown": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "MDX": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "SCSS": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "TypeScript": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "TSX": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "Vue.js": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| }, | |
| "YAML": { | |
| "format_on_save": "on", | |
| "prettier": { | |
| "allowed": false | |
| }, | |
| "formatter": [ | |
| { | |
| "language_server": { | |
| "name": "oxfmt" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| "git_panel": { | |
| "tree_view": true, | |
| "dock": "right" | |
| }, | |
| "use_system_path_prompts": true, | |
| "auto_update": false, | |
| "show_edit_predictions": true, | |
| "context_server_timeout": 45, | |
| "context_servers": { | |
| "mcp-server-github": { | |
| "enabled": true, | |
| "settings": { | |
| "github_personal_access_token": "***" | |
| } | |
| }, | |
| "mcp-server-context7": { | |
| "enabled": true, | |
| "settings": { | |
| "context7_api_key": "***" | |
| } | |
| } | |
| }, | |
| "icon_theme": { | |
| "mode": "dark", | |
| "light": "Flow Deep", | |
| "dark": "Flow Deep" | |
| }, | |
| "agent": { | |
| // "always_allow_tool_actions": true, | |
| // "dock": "left", | |
| "default_model": { | |
| "provider": "anthropic", | |
| "model": "claude-sonnet-4-6-latest" | |
| }, | |
| "enabled": true, | |
| "dock": "right" | |
| // "sidebar_side": "right" | |
| }, | |
| "vim_mode": true, | |
| "cursor_blink": false, | |
| // "cursor_shape": "block", | |
| "relative_line_numbers": "enabled", | |
| "theme_overrides": { | |
| "Vercel Dark": { | |
| "terminal.background": "#000" | |
| // "editor.background": "#121212", | |
| // "panel.background": "#121212", | |
| // "tab_bar.background": "#121212", | |
| // "tab.active_background": "#121212", | |
| // "editor.gutter.background": "#121212", | |
| // "elevated_surface.background": "#0e0e0e", | |
| // "editor.document_highlight.write_background": "#121212", | |
| // "title_bar.background": "#121212", | |
| // "status_bar.background": "#121212", | |
| // "editor.subheader.background": "#121212", | |
| // "toolbar.background": "#121212", | |
| // "background": "#121212", | |
| // "border.variant": "#121212", | |
| // "terminal.background": "#121212", | |
| // "syntax": { | |
| // "comment": { | |
| // "font_style": "italic" | |
| // }, | |
| // "comment.doc": { | |
| // "font_style": "italic" | |
| // } | |
| // } | |
| }, | |
| "Aura Soft Dark": { | |
| "border.variant": "#21202E", | |
| // "border": "#21202E", | |
| // "title_bar.background": "#21202E", | |
| // "panel.background": "#21202E", | |
| "panel.focused_border": "#43466E", | |
| "syntax": { | |
| "comment": { | |
| "font_style": "italic" | |
| }, | |
| "comment.doc": { | |
| "font_style": "italic" | |
| } | |
| } | |
| } | |
| }, | |
| "title_bar": { | |
| // "show_onboarding_banner": false, | |
| "show_user_menu": false | |
| // "show_branch_name": false | |
| // "show_project_items": false, | |
| }, | |
| "tab_bar": { | |
| "show": false | |
| }, | |
| "toolbar": { | |
| "quick_actions": false | |
| }, | |
| "status_bar": { | |
| "experimental.show": true, | |
| "line_endings_button": false, | |
| "active_language_button": false, | |
| "cursor_position_button": false | |
| }, | |
| "project_panel": { | |
| "dock": "right", | |
| "default_width": 400, | |
| "hide_root": true, | |
| "auto_fold_dirs": false, | |
| // "starts_open": false, | |
| // "sticky_scroll": false, | |
| "scrollbar": { | |
| "show": "never" | |
| }, | |
| "indent_guides": { | |
| "show": "never" | |
| } | |
| }, | |
| "outline_panel": { | |
| "dock": "right", | |
| "default_width": 300, | |
| "indent_guides": { | |
| "show": "never" | |
| } | |
| }, | |
| "file_finder": { | |
| // "modal_max_width": "large" | |
| }, | |
| "gutter": { | |
| "min_line_number_digits": 0, | |
| "folds": false, | |
| "runnables": false | |
| }, | |
| "indent_guides": { | |
| "enabled": false | |
| }, | |
| // "buffer_font_family": ".ZedMono", | |
| "buffer_font_family": "JetBrainsMonoNL Nerd Font", | |
| // "buffer_font_family": "Departure Mono", | |
| // "ui_font_family": ".ZedMono", | |
| // "ui_font_family": "JetBrainsMonoNL Nerd Font", | |
| "theme": { | |
| "mode": "dark", | |
| "light": "Vercel Light", | |
| "dark": "Vercel Dark" | |
| }, | |
| "ui_font_size": 20, | |
| "buffer_font_size": 20, | |
| // "agent_ui_font_size": 20, | |
| // "agent_buffer_font_size": 20, | |
| "terminal": { | |
| "font_size": 20, | |
| // "font_family": ".ZedMono", | |
| "font_family": "JetBrainsMonoNL Nerd Font", | |
| "dock": "bottom", | |
| "option_as_meta": true | |
| }, | |
| "multi_cursor_modifier": "cmd_or_ctrl", | |
| "buffer_line_height": { | |
| "custom": 1.8 | |
| }, | |
| "selection_highlight": false, | |
| "drag_and_drop_selection": { | |
| "enabled": false | |
| }, | |
| "seed_search_query_from_cursor": "never", | |
| "current_line_highlight": "none", | |
| "show_whitespaces": "none", | |
| "tab_size": 2, | |
| "auto_indent": "none", | |
| "auto_indent_on_paste": false, | |
| // "show_completions_on_input": false, | |
| // "show_completion_documentation": false, | |
| "hover_popover_enabled": false, | |
| // "autosave": { | |
| // "after_delay": { | |
| // "milliseconds": 1000, | |
| // }, | |
| // }, | |
| "session": { | |
| "trust_all_worktrees": true, | |
| "restore_unsaved_buffers": false | |
| }, | |
| // "extend_comment_on_newline": false, | |
| // "horizontal_scroll_margin": 1, | |
| // "vertical_scroll_margin": 1, | |
| "when_closing_with_no_tabs": "keep_window_open", | |
| "close_on_file_delete": false, | |
| // "restore_on_startup": "empty_tab", | |
| "git": { | |
| "git_gutter": "tracked_files" | |
| // "inline_blame": null, | |
| }, | |
| "centered_layout": { | |
| "right_padding": 0.15, | |
| "left_padding": 0.15 | |
| }, | |
| "file_scan_inclusions": ["ob/spec.md"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment