37 lines
913 B
JSON
37 lines
913 B
JSON
// 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)
|
|
{
|
|
"theme": "One Dark",
|
|
"buffer_font_family": "Intel One Mono",
|
|
"base_keymap": "SublimeText",
|
|
"format_on_save": "off",
|
|
"buffer_font_size": 18,
|
|
"hard_tabs": true,
|
|
"tab_size": 4,
|
|
"ensure_final_newline_on_save": false,
|
|
"lsp": {
|
|
"rust-analyzer": {
|
|
"initialization_options": {
|
|
"checkOnSave": {
|
|
"command": "clippy" // rust-analyzer.checkOnSave.command
|
|
}
|
|
}
|
|
},
|
|
"discord_presence": {
|
|
"initialization_options": {
|
|
"idle": {
|
|
"timeout": 99999999999
|
|
},
|
|
"details": "In a workspace",
|
|
"state": "Working on a {language:u} file"
|
|
},
|
|
"git_integration": true
|
|
}
|
|
}
|
|
} |