feat: added zed config

This commit is contained in:
moonleay 2024-07-15 16:54:11 +02:00
parent 0d4dabd2b8
commit f9527c3b04
Signed by: moonleay
GPG key ID: 82667543CCD715FB
2 changed files with 50 additions and 0 deletions

3
zed/keymap.json Normal file
View file

@ -0,0 +1,3 @@
[
]

47
zed/settings.json Normal file
View 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
}