Skip to content

Instantly share code, notes, and snippets.

@lmllrjr
Last active July 1, 2023 23:54
Show Gist options
  • Save lmllrjr/cf448552315390eec924a90c68c305fe to your computer and use it in GitHub Desktop.
Save lmllrjr/cf448552315390eec924a90c68c305fe to your computer and use it in GitHub Desktop.
Zed settings file
// 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 the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"theme": "Solarized Dark",
"buffer_font_family": "Hack Nerd Font Mono",
"buffer_font_size": 15,
"vim_mode": false,
"tab_size": 8,
"telemetry": {
// "diagnostics": false,
"metrics": false
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"checkOnSave": {
"command": "clippy" // rust-analyzer.checkOnSave.command
}
}
},
"gopls": {
"initialization_options": {
"gofumpt": true
}
}
},
"terminal": {
"blinking": "terminal_controlled",
"copy_on_select": false,
"font_family": "Hack Nerd Font Mono",
"shell": {
"program": "zsh"
},
"working_directory": "current_project_directory"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment