diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2026-06-03 00:55:36 +0200 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2026-06-03 00:55:36 +0200 |
| commit | 6eb86068f83c1658da050cf2313530853a51b511 (patch) | |
| tree | 7209431f83d82f7e2bdd72b0d4d24959992408e0 | |
| parent | d85d50c93da30dcc9f7047bb0c7f43bedab1992f (diff) | |
tmux: add initial configuration
| -rwxr-xr-x | deploy.sh | 2 | ||||
| -rw-r--r-- | tmux.conf | 25 |
2 files changed, 27 insertions, 0 deletions
@@ -53,3 +53,5 @@ for profile in ${HOME}/.mozilla/firefox/*.default ${HOME}/.mozilla/firefox/*.def done ln -sf ${CONFIG_DIR}/xdg/user-dirs.conf ${HOME}/.config/user-dirs.conf + +ln -sf ${CONFIG_DIR}/tmux.conf ${HOME}/.config/tmux/tmux.conf diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..4b8fba5 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,25 @@ +unbind C-b +set -g prefix C-a + +set -g mode-keys vi +set -g history-limit 10000 + +bind C-a last-window + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +bind -r H resize-pane -L 5 +bind -r J resize-pane -D 5 +bind -r K resize-pane -U 5 +bind -r L resize-pane -R 5 + +bind -r C-h select-window -t :- +bind -r C-l select-window -t :+ + +set -g status-bg "color0" +set -g status-fg "color7" +set -g status-right "%H:%M" +set-window-option -g window-status-current-style "bg=color4,fg=color7" |
