This commit is contained in:
2025-04-16 18:23:04 -04:00
parent 6be4689e36
commit d362b18dac

37
src/config.json Normal file
View File

@ -0,0 +1,37 @@
// 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
}
}
}