Last active
May 8, 2024 06:58
-
-
Save juliomatcom/fc40bab53cb01fb3286b054ebd55e5ff to your computer and use it in GitHub Desktop.
Zed Editor custom theme (Ayu Dark)
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
| { | |
| "file_types": { | |
| "Ruby": ["Jenkinsfile"] | |
| }, | |
| "telemetry": { | |
| "metrics": false | |
| }, | |
| "theme": "Ayu Dark", | |
| "ui_font_size": 16, | |
| "buffer_font_size": 14, | |
| "tab_size": 2, | |
| "show_whitespaces": "selection", | |
| "soft_wrap": "editor_width", | |
| "show_wrap_guides": true, | |
| "wrap_guides": [80], | |
| "tabs": { | |
| "git_status": true | |
| }, | |
| "project_panel": { | |
| // Default width of the project panel. | |
| "default_width": 120, | |
| // Where to dock project panel. Can be 'left' or 'right'. | |
| "dock": "left", | |
| "indent_size": 10 | |
| }, | |
| "experimental.theme_overrides": { | |
| "editor.foreground": "#e6e5e5", | |
| "editor.background": "#0d0d0d", | |
| "editor.wrap_guide": "#262626", | |
| "syntax": { | |
| "variable": { | |
| "color": "#dedcdc" | |
| }, | |
| "constant": { | |
| "color": "#e6e5e5" | |
| }, | |
| "type": { | |
| "color": "#debac7" | |
| }, | |
| "variable.special": { | |
| "color": "#e6e5e5" | |
| }, | |
| "function": { | |
| "color": "#f2e373" | |
| }, | |
| "keyword": { | |
| "color": "#ec6262" | |
| }, | |
| "comment": { | |
| "color": "#ffcc80" | |
| } | |
| }, | |
| "error": "#ff8566", | |
| "warning": "#ffd699", | |
| "info": "#e6e5e5" | |
| }, | |
| "language_overrides": { | |
| "JSON": { | |
| "format_on_save": "off" | |
| }, | |
| "TypeScript": { | |
| "format_on_save": "off" | |
| }, | |
| "JavaScript": { | |
| "format_on_save": "off" | |
| }, | |
| "TSX": { | |
| "format_on_save": "off" | |
| }, | |
| "Markdown": { | |
| "show_whitespaces": "all" | |
| }, | |
| "YAML": { | |
| "show_whitespaces": "all" | |
| }, | |
| "HTML": { | |
| "show_whitespaces": "all" | |
| }, | |
| "Python": { | |
| "show_whitespaces": "all" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment