Created
October 28, 2024 13:09
-
-
Save gmdias727/2409d2e7a9ddfff1b2eab512e413e915 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
// 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) | |
{ | |
"outline_panel": { | |
"dock": "right" | |
}, | |
"assistant": { | |
"default_model": { | |
"provider": "zed.dev", | |
"model": "claude-3-5-sonnet-latest" | |
}, | |
"version": "2" | |
}, | |
"ui_font_size": 16, | |
"ui_font_weight": 1000, | |
"buffer_font_size": 16, | |
"buffer_font_family": "Hack Nerd Font", | |
"ui_font_family": "Hack Nerd Font", | |
"show_whitespaces": "all", | |
"buffer_line_height": "standard", | |
"cursor_blink": false, | |
"format_on_save": "on", | |
"formatter": "prettier", | |
"cursor_shape": "bar", | |
"theme": { | |
"mode": "system", | |
"light": "macOS Classic Light", | |
"dark": "One Dark" | |
}, | |
"experimental.theme_overrides": { | |
"syntax": { | |
"comment": { | |
"font_style": "italic" | |
}, | |
"comment.doc": { | |
"font_style": "italic" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment