mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-13 01:52:25 +00:00
35 lines
820 B
JSON
35 lines
820 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 the `open default settings` command
|
|
// from the command palette or from `Zed` application menu.
|
|
{
|
|
"features": {
|
|
"inline_completion_provider": "none",
|
|
"copilot": false
|
|
},
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 16,
|
|
"theme": {
|
|
"mode": "dark",
|
|
"light": "One Light",
|
|
"dark": "Material Dark"
|
|
},
|
|
"git": {
|
|
"git_gutter": "tracked_files",
|
|
"gutter_debounce": 5,
|
|
"inline_blame": {
|
|
"enabled": true,
|
|
"delay_ms": 3000
|
|
}
|
|
},
|
|
"toolbar": {
|
|
"breadcrumbs": true,
|
|
"selections_menu": true,
|
|
"quick_actions": true
|
|
},
|
|
"base_keymap": "VSCode"
|
|
}
|