mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-01 04:03:40 +00:00
Andrei Jiroh Halili
4fd021f3a0
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>
35 lines
818 B
JSON
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"
|
|
}
|