feat(restic): update backup profiles and ignore patterns for improved organization

fix(ssh): clean up whitespace in SSH configuration files
feat(zed): enhance Zed settings with new configurations and improved defaults
fix(zsh): remove unused editor aliases for cleaner alias management
This commit is contained in:
Dmitry
2026-03-04 12:48:58 +03:00
parent 6eb202110a
commit 3dae3163ee
7 changed files with 100 additions and 71 deletions
+37 -5
View File
@@ -7,10 +7,37 @@
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"base_keymap": "VSCode",
"use_smartcase_search": true,
"minimap": {
"show": "never"
},
"scrollbar": {
"axes": {
"horizontal": true,
"vertical": true
}
},
"cursor_blink": true,
"colorize_brackets": true,
"auto_indent_on_paste": true,
"show_whitespaces": "selection",
"ensure_final_newline_on_save": true,
"indent_guides": {
"enabled": true
},
"preferred_line_length": 100,
"soft_wrap": "editor_width",
"hard_tabs": false,
"tab_size": 4,
"session": {
"trust_all_worktrees": false
},
"edit_predictions": {
"provider": "copilot"
},
"outline_panel": {
"git_status": true,
"auto_fold_dirs": true,
},
"use_system_window_tabs": true,
@@ -21,7 +48,7 @@
"cursor_shape": "bar",
"autosave": {
"after_delay": {
"milliseconds": 1000,
"milliseconds": 5000,
},
},
"preview_tabs": {
@@ -36,10 +63,13 @@
"border_size": 0.0,
},
"status_bar": {
"experimental.show": true,
"active_language_button": true,
"cursor_position_button": true,
},
"terminal": {
"font_family": "FiraCode Nerd Font Mono",
"font_size": 14.0,
"dock": "bottom",
"button": true,
},
@@ -81,8 +111,10 @@
"hide_gitignore": false,
},
"agent": {
"tool_permissions": {
"default": "allow"
},
"button": true,
"always_allow_tool_actions": true,
"inline_assistant_model": {
"provider": "copilot_chat",
"model": "grok-code-fast-1",
@@ -113,11 +145,11 @@
"dark": "Catppuccin Frappé",
},
"ui_font_size": 16.0,
"buffer_font_size": 15.0,
"buffer_font_size": 14.0,
"proxy": "http://127.0.0.1:8118",
"theme": {
"mode": "system",
"light": "Nord Light",
"dark": "Catppuccin Frappé",
"light": "Ayu Light",
"dark": "One Dark",
},
}
+37 -7
View File
@@ -7,7 +7,37 @@
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"base_keymap": "VSCode",
"use_smartcase_search": true,
"minimap": {
"show": "never"
},
"scrollbar": {
"axes": {
"horizontal": true,
"vertical": true
}
},
"cursor_blink": true,
"colorize_brackets": true,
"auto_indent_on_paste": true,
"show_whitespaces": "selection",
"ensure_final_newline_on_save": true,
"indent_guides": {
"enabled": true
},
"preferred_line_length": 100,
"soft_wrap": "editor_width",
"hard_tabs": false,
"tab_size": 4,
"session": {
"trust_all_worktrees": false
},
"edit_predictions": {
"provider": "copilot"
},
"outline_panel": {
"git_status": true,
"auto_fold_dirs": true,
},
"use_system_window_tabs": true,
@@ -18,7 +48,7 @@
"cursor_shape": "bar",
"autosave": {
"after_delay": {
"milliseconds": 1000,
"milliseconds": 5000,
},
},
"preview_tabs": {
@@ -33,10 +63,13 @@
"border_size": 0.0,
},
"status_bar": {
"experimental.show": true,
"active_language_button": true,
"cursor_position_button": true,
},
"terminal": {
"font_family": "FiraCode Nerd Font Mono",
"font_size": 14.0,
"dock": "bottom",
"button": true,
},
@@ -95,9 +128,6 @@
"button": false,
"dock": "right",
},
"features": {
"edit_prediction_provider": "copilot",
},
"ui_font_family": "FiraCode Nerd Font Mono",
"telemetry": {
"diagnostics": false,
@@ -113,11 +143,11 @@
"dark": "Catppuccin Frappé",
},
"ui_font_size": 16.0,
"buffer_font_size": 15.0,
"buffer_font_size": 14.0,
"proxy": "http://127.0.0.1:8118",
"theme": {
"mode": "system",
"light": "Nord Light",
"dark": "Catppuccin Frappé",
"light": "One Light",
"dark": "One Dark",
},
}