From 0b6b9b07f35e47d0c556e3240cfa4792f594eff1 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Fri, 24 Mar 2023 17:05:45 +0100 Subject: erster Import --- tmux/tmux.conf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tmux/tmux.conf (limited to 'tmux') diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..343568c --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,24 @@ +set -g mouse on +set -g default-terminal "xterm-256color" +set -g status-left " " +set -g status-right "" +set -g base-index 1 +set -g pane-base-index 1 +set -g history-limit 10000 +set -g escape-time 0 +set -g aggressive-resize on +set -g window-status-style fg=black,bg=green +set -g window-status-current-style fg=black,bg=blue,bold +set -g mode-keys vi + +bind -n C-S-Left previous-window +bind -n C-S-Right next-window + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}" +bind r source-file ~/.config/tmux/tmux.conf \; display-message "Config reloaded" + -- cgit v1.3