dotfiles/.config/zed/settings.json
Andrei Jiroh Halili 4fd021f3a0
chore(global): update configs and readme as usual
Additions:
* Zed editor config files (keymaps and user-wide settings)

Changed:
* add glab CLI to .tool-versions for asdf
* some small config changes on btop
* update user-wide VS Code settings
* small edits to README

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>
2024-07-21 07:45:31 +08:00

35 lines
818 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": "Github 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"
}