dotfiles/.config/zed/settings.json
Andrei Jiroh Halili a53db84791
chore(global): update VS Code and Zed editor settings
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>
2024-08-11 15:37:25 +08:00

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"
}