Last active
December 1, 2024 14:42
-
-
Save dinkopehar/65ed41fb113e42fb2fdbbc3e05e33880 to your computer and use it in GitHub Desktop.
Zed Configuration
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) | |
{ | |
"assistant": { | |
"default_model": { | |
"provider": "openai", | |
"model": "gpt-4-turbo" | |
}, | |
"inline_alternatives": [ | |
{ | |
"provider": "openai", | |
"model": "gpt-4-turbo" | |
} | |
], | |
"version": "2" | |
}, | |
"features": { | |
"inline_completion_provider": "supermaven" | |
}, | |
"show_signature_help_after_edits": true, | |
"autosave": "on_window_change", | |
"ui_font_size": 16, | |
"buffer_font_size": 16, | |
"theme": { | |
"mode": "system", | |
"light": "One Light", | |
"dark": "Gruvbox Dark" | |
}, | |
"ui_font_family": "Iosevka", | |
"buffer_font_family": "Iosevka", | |
"active_pane_modifiers": { | |
"inactive_opacity": 0.8 | |
}, | |
"centered_layout": { | |
"left_padding": 0.1, | |
"right_padding": 0.1 | |
}, | |
"tab_bar": { | |
"show_nav_history_buttons": false | |
}, | |
"indent_guides": { | |
"enabled": false | |
}, | |
"project_panel": { | |
"indent_guides": { | |
"show": "never" | |
}, | |
"indent_size": 25, | |
"scrollbar": { | |
"show": "never" | |
} | |
}, | |
"experimental.theme_overrides": { | |
"syntax": { | |
"function": { | |
"font_style": "italic" | |
}, | |
"comment": { | |
"font_style": "italic", | |
"font_weight": 600 | |
}, | |
"class": { | |
"font_weight": 700, | |
"color": "#fabd2f" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment