dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

commit 477f71cad7cee542fb65a8d4b14c6a78f595b551
parent 3fc84459472c324111011586f727985b3cfa5463
Author: tongong <tongong@gmx.net>
Date:   Sun, 13 Feb 2022 10:56:59 +0100

updated tmux config

Diffstat:
Mtmux.conf | 15++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/tmux.conf b/tmux.conf @@ -20,6 +20,12 @@ bind -r C-l resize-pane -R # fix escape key set -sg escape-time 0 +# no gaps in window number count when a window gets deleted +set -g renumber-windows on + +# send focus events to clients +set -g focus-events on + # vim keys for copy mode set-window-option -g mode-keys vi bind -T prefix Escape copy-mode @@ -27,6 +33,12 @@ bind -T copy-mode v send -X begin-selection bind -T copy-mode y send -X copy-selection bind -T prefix P paste-buffer -p +# do not ask stupid questions +bind-key x kill-pane + +# statusbar +set -g status-position top +bind S { set-option status } set -g pane-active-border-style fg=color8 set -g pane-border-style fg=color8 set -g status-left '' @@ -40,6 +52,3 @@ set -g base-index 1 # reload config bind r source-file ~/.tmux.conf - -# set-option -g status off -bind S { set-option status }