Last active
August 1, 2026 01:42
-
-
Save occamist/6160a797b9de8c12dbf5d3c6870b86d3 to your computer and use it in GitHub Desktop.
Zed Settings to make it look like GoLand MaterialUI One Dark Pro
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
| // 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) | |
| { | |
| "lsp_document_colors": "background", | |
| "cli_default_open_behavior": "new_window", | |
| "colorize_brackets": true, | |
| "agent_servers": { | |
| "codex-acp": { | |
| "type": "registry", | |
| }, | |
| "claude-acp": { | |
| "type": "registry", | |
| }, | |
| }, | |
| "edit_predictions": { | |
| "mode": "subtle", | |
| "provider": "zed", | |
| }, | |
| "project_panel": { | |
| "dock": "left", | |
| }, | |
| "outline_panel": { | |
| "dock": "left", | |
| }, | |
| "collaboration_panel": { | |
| "button": false, | |
| "dock": "left", | |
| }, | |
| "agent": { | |
| "sidebar_side": "right", | |
| "dock": "right", | |
| "favorite_models": [], | |
| "model_parameters": [], | |
| }, | |
| "git_panel": { | |
| "tree_view": true, | |
| "dock": "left", | |
| }, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false, | |
| }, | |
| "session": { | |
| "trust_all_worktrees": true, | |
| }, | |
| "base_keymap": "JetBrains", | |
| "icon_theme": "Material Icon Theme", | |
| "ui_font_size": 16, | |
| "ui_font_family": ".ZedSans", | |
| "buffer_font_size": 16.0, | |
| "buffer_font_family": ".ZedMono", | |
| "buffer_font_features": { | |
| "calt": false, | |
| }, | |
| "theme": { | |
| "mode": "dark", | |
| "light": "Ayu Light", | |
| "dark": "One Dark Pro", | |
| }, | |
| "languages": { | |
| "Markdown": { | |
| "preferred_line_length": 80 | |
| }, | |
| "TypeScript": { | |
| "preferred_line_length": 120 | |
| }, | |
| "Go": { | |
| "semantic_tokens": "combined", | |
| }, | |
| "Astro": { | |
| "prettier": { | |
| "allowed": true | |
| }, | |
| "preferred_line_length": 120, | |
| "semantic_tokens": "combined", | |
| }, | |
| }, | |
| "global_lsp_settings": { | |
| "semantic_token_rules": [ | |
| { | |
| "token_type": "namespace", | |
| "foreground_color": "#E5C17C", // yellow | |
| }, | |
| { | |
| "token_type": "type", | |
| "token_modifiers": ["declaration"], | |
| "foreground_color": "#E5C17C", // yellow | |
| }, | |
| { | |
| "token_type": "type", | |
| "token_modifiers": ["definition"], | |
| "foreground_color": "#E5C17C", // yellow | |
| }, | |
| { | |
| "token_type": "type", | |
| "foreground_color": "#c679dd", // purple | |
| }, | |
| { | |
| "token_type": "parameter", | |
| "foreground_color": "#D19A66", // orange | |
| }, | |
| { | |
| "token_type": "variable", | |
| "foreground_color": "#D19A66", // orange | |
| }, | |
| { | |
| "token_type": "property", | |
| "foreground_color": "#D19A66", // orange | |
| }, | |
| { | |
| "token_type": "operator", | |
| "foreground_color": "#61AFEF", // blue | |
| }, | |
| ], | |
| }, | |
| "theme_overrides": { | |
| "One Dark Pro": { | |
| "syntax": { | |
| "namespace": { | |
| "color": "#E5C17C", // yellow | |
| }, | |
| "variable": { | |
| "color": "#D19A66", // orange | |
| }, | |
| "property": { | |
| "color": "#D19A66", // orange | |
| }, | |
| "type": { | |
| "color": "#c679dd", // purple | |
| }, | |
| }, | |
| }, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment