backup: 2026-04-06 16:24
This commit is contained in:
@@ -79,7 +79,7 @@ resticprofile -n dotfiles check # проверить репозиторий
|
||||
# resticprofile (управление бэкапами)
|
||||
# или через пакетный менеджер вашей системы
|
||||
```
|
||||
|
||||
t
|
||||
4. **Настройка rclone** (нужно один раз):
|
||||
```bash
|
||||
rclone config
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
{
|
||||
"disable_ai": true,
|
||||
"restore_on_startup": "launchpad",
|
||||
"base_keymap": "VSCode",
|
||||
"use_smartcase_search": true,
|
||||
"minimap": {
|
||||
"show": "never"
|
||||
"show": "never",
|
||||
},
|
||||
"scrollbar": {
|
||||
"axes": {
|
||||
"horizontal": true,
|
||||
"vertical": true
|
||||
}
|
||||
"vertical": true,
|
||||
},
|
||||
},
|
||||
"cursor_blink": true,
|
||||
"colorize_brackets": true,
|
||||
@@ -17,17 +18,17 @@
|
||||
"show_whitespaces": "selection",
|
||||
"ensure_final_newline_on_save": true,
|
||||
"indent_guides": {
|
||||
"enabled": true
|
||||
"enabled": true,
|
||||
},
|
||||
"preferred_line_length": 100,
|
||||
"soft_wrap": "editor_width",
|
||||
"hard_tabs": false,
|
||||
"tab_size": 4,
|
||||
"session": {
|
||||
"trust_all_worktrees": true
|
||||
"trust_all_worktrees": true,
|
||||
},
|
||||
"edit_predictions": {
|
||||
"provider": "copilot"
|
||||
"provider": "none",
|
||||
},
|
||||
"outline_panel": {
|
||||
"git_status": true,
|
||||
@@ -94,7 +95,7 @@
|
||||
},
|
||||
"project_panel": {
|
||||
"sort_mode": "directories_first",
|
||||
"dock": "left",
|
||||
"dock": "right",
|
||||
"hide_root": true,
|
||||
"button": true,
|
||||
"indent_size": 15.0,
|
||||
@@ -104,8 +105,9 @@
|
||||
"hide_gitignore": false,
|
||||
},
|
||||
"agent": {
|
||||
"enable_feedback": false,
|
||||
"tool_permissions": {
|
||||
"default": "allow"
|
||||
"default": "allow",
|
||||
},
|
||||
"button": true,
|
||||
"inline_assistant_model": {
|
||||
@@ -145,6 +147,9 @@
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "Ayu Light",
|
||||
"dark": "Nordfox - opaque",
|
||||
"dark": "Tokyo Night",
|
||||
},
|
||||
"features": {
|
||||
"notebooks": true,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -191,4 +191,13 @@ alias gbackup='git add . && git commit -m "backup: $(date +"%Y-%m-%d %H:%M")" &&
|
||||
|
||||
alias db_rev='rails db:drop && rails db:create && rails db:migrate && rails db:seed'
|
||||
|
||||
alias dotfiles='$VISUAL ~/.dotfiles'
|
||||
alias zed='zeditor'
|
||||
alias dotfiles='$VISUAL ~/dotfiles'
|
||||
alias ua-drop-caches='sudo paccache -rk3; paru -Sc --noconfirm'
|
||||
alias ua-update-all='export TMPFILE="$(mktemp)"; \
|
||||
sudo true; \
|
||||
rate-mirrors --save=$TMPFILE arch --max-delay=21600 \
|
||||
&& sudo mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist-backup \
|
||||
&& sudo mv $TMPFILE /etc/pacman.d/mirrorlist \
|
||||
&& paru -Syyu --noconfirm \
|
||||
&& ua-drop-caches'
|
||||
|
||||
@@ -4,8 +4,9 @@
|
||||
|
||||
# ═══ Основные пути ═════════════════════════════════════════
|
||||
export EDITOR="${EDITOR:-nano}"
|
||||
export VISUAL="${VISUAL:-code}"
|
||||
export VISUAL="${VISUAL:-zeditor}"
|
||||
export PAGER="less"
|
||||
export SUDO_EDITOR="zeditor --wait"
|
||||
|
||||
# ═══ XDG Base Directories ══════════════════════════════════
|
||||
export XDG_CONFIG_HOME="${HOME}/.config"
|
||||
|
||||
Reference in New Issue
Block a user