Created
October 5, 2024 15:02
-
-
Save sovietspy2/3546bbd5553771889db6b2ec59751734 to your computer and use it in GitHub Desktop.
My zed editor custom settings
This file contains 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": "copilot_chat", | |
"model": "gpt-4o" | |
}, | |
"version": "2" | |
}, | |
"ui_font_size": 20, | |
"buffer_font_size": 20, | |
"buffer_font_family": "Comic Mono", | |
"format_on_save": "on", | |
"theme": { | |
"mode": "dark", | |
"light": "One Light", | |
"dark": "Gruvbox Dark Hard" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment