refactor: consolidate tmux config into home-manager 🎨

Remove system-level tmux.nix; home.nix is now the single source.
Port resize-pane shortcuts (H/J/K/L) from the old config.
This commit is contained in:
DannyDannyDanny 2026-03-30 18:12:41 +02:00
parent e997a83c93
commit ee4c2db93f
3 changed files with 6 additions and 58 deletions

View file

@ -43,6 +43,12 @@
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
# Resize pane shortcuts
bind -r H resize-pane -L 10
bind -r J resize-pane -D 10
bind -r K resize-pane -U 10
bind -r L resize-pane -R 10
# split with dash and vbar
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"