feat: added zed config
This commit is contained in:
parent
0d4dabd2b8
commit
f9527c3b04
2 changed files with 50 additions and 0 deletions
3
zed/keymap.json
Normal file
3
zed/keymap.json
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[
|
||||||
|
|
||||||
|
]
|
47
zed/settings.json
Normal file
47
zed/settings.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
// 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"
|
||||||
|
},
|
||||||
|
"project_panel": {
|
||||||
|
"dock": "right"
|
||||||
|
},
|
||||||
|
"theme": "Catppuccin Mocha",
|
||||||
|
"telemetry": {
|
||||||
|
"diagnostics": false,
|
||||||
|
"metrics": false
|
||||||
|
},
|
||||||
|
"vim_mode": true,
|
||||||
|
"vertical_scroll_margin": 5,
|
||||||
|
"ui_font_size": 16,
|
||||||
|
"buffer_font_size": 16,
|
||||||
|
// "ui_font_family": " Mono",
|
||||||
|
// "buffer_font_family": "LiberationMono",
|
||||||
|
"autosave": "on_focus_change",
|
||||||
|
"auto_update": false,
|
||||||
|
"tab_bar": {
|
||||||
|
"show_nav_history_buttons": false,
|
||||||
|
"show": true
|
||||||
|
},
|
||||||
|
"toolbar": {
|
||||||
|
"quick_actions": false
|
||||||
|
},
|
||||||
|
"chat_panel": {
|
||||||
|
"button": false
|
||||||
|
},
|
||||||
|
"collaboration_panel": {
|
||||||
|
"button": false
|
||||||
|
},
|
||||||
|
"assistant": {
|
||||||
|
"enabled": false,
|
||||||
|
"version": "1"
|
||||||
|
},
|
||||||
|
"relative_line_numbers": true
|
||||||
|
}
|
Loading…
Reference in a new issue