diff --git a/src/config.json b/src/config.json new file mode 100644 index 0000000..cbf5c0c --- /dev/null +++ b/src/config.json @@ -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 + } + } +} \ No newline at end of file