Update: Added rofi configs, dunst config and icons.

This commit is contained in:
Keyitdev
2025-07-31 11:15:25 +02:00
parent beb1d80f7b
commit 764e3915a3
21 changed files with 703 additions and 52 deletions
+53
View File
@@ -0,0 +1,53 @@
// 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.
{
"agent": {
"default_model": {
"provider": "copilot_chat",
"model": "gpt-4o"
},
},
"features": {
"edit_prediction_provider": "none"
},
"theme": {
"mode": "dark",
"dark": "One Dark Pro",
"light": "One Light"
},
"ui_font_size": 18,
"ui_font_family": "Open Sans",
"buffer_font_size": 18.0,
"buffer_font_family": "Roboto Mono",
"buffer_font_weight": 400,
"vim_mode": false,
"preferred_line_length": 80,
"tab_size": 4,
"soft_wrap": "none",
"format_on_save": "off",
"confirm_quit": true,
"tabs": {
"git_status": true
},
"toolbar": {
"quick_actions": false
},
"git": {
"inline_blame": {
"enabled": false,
"delay_ms": 500
}
},
"telemetry": {
"diagnostics": false,
"metrics": false
}
}