dotfiles v1.0.4

This commit is contained in:
Your Name
2026-06-19 20:14:33 +00:00
parent 5d583e8413
commit 962d4bd8be
2 changed files with 11 additions and 11 deletions

View File

@@ -38,7 +38,7 @@
# DOTFILES_DIR holds the template files; DOTFILES_BACKUP_DIR holds backups # DOTFILES_DIR holds the template files; DOTFILES_BACKUP_DIR holds backups
# and the last-update-check timestamp. # and the last-update-check timestamp.
set -g DOTFILES_VERSION "1.0.3" set -g DOTFILES_VERSION "1.0.4"
# --- Remote repository (set this to enable auto-updates) -------------------- # --- Remote repository (set this to enable auto-updates) --------------------
# Example: # Example:

View File

@@ -27,17 +27,17 @@ bind r source-file ~/.tmux.conf \; display " tmux.conf reloaded"
bind | split-window -h bind | split-window -h
bind - split-window -v bind - split-window -v
# ── Vim-style pane navigation ──────────────────────────────────────────────── # ── Arrow-key pane navigation (no prefix needed) ─────────────────────────────
bind h select-pane -L bind -n Left select-pane -L
bind j select-pane -D bind -n Right select-pane -R
bind k select-pane -U bind -n Down select-pane -D
bind l select-pane -R bind -n Up select-pane -U
# ── Resize panes with arrow keys ───────────────────────────────────────────── # ── Resize panes with Alt+arrow keys ─────────────────────────────────────────
bind -r Left resize-pane -L 2 bind -n M-Left resize-pane -L 2
bind -r Right resize-pane -R 2 bind -n M-Right resize-pane -R 2
bind -r Down resize-pane -D 2 bind -n M-Down resize-pane -D 2
bind -r Up resize-pane -U 2 bind -n M-Up resize-pane -U 2
# ── Window management ──────────────────────────────────────────────────────── # ── Window management ────────────────────────────────────────────────────────
bind c new-window -c "#{pane_current_path}" bind c new-window -c "#{pane_current_path}"