aboutsummaryrefslogtreecommitdiff
path: root/tmux/tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tmux/tmux.conf')
-rw-r--r--tmux/tmux.conf10
1 files changed, 6 insertions, 4 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index 343568c..464d5bd 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -1,7 +1,8 @@
1set -g mouse on 1set -g mouse on
2set -g default-terminal "xterm-256color" 2set -g default-terminal "xterm-256color"
3set -g status on
3set -g status-left " " 4set -g status-left " "
4set -g status-right "" 5set -g status-right "| #[fg=white]#(curl 'wttr.in/Störnstein?format="%%l:+%%t+%%w"')#[fg=black] | #[fg=darkblue]#(date '+%H:%M') "
5set -g base-index 1 6set -g base-index 1
6set -g pane-base-index 1 7set -g pane-base-index 1
7set -g history-limit 10000 8set -g history-limit 10000
@@ -11,7 +12,7 @@ set -g window-status-style fg=black,bg=green
11set -g window-status-current-style fg=black,bg=blue,bold 12set -g window-status-current-style fg=black,bg=blue,bold
12set -g mode-keys vi 13set -g mode-keys vi
13 14
14bind -n C-S-Left previous-window 15bind -n C-S-Left previous-window
15bind -n C-S-Right next-window 16bind -n C-S-Right next-window
16 17
17bind h select-pane -L 18bind h select-pane -L
@@ -19,6 +20,7 @@ bind j select-pane -D
19bind k select-pane -U 20bind k select-pane -U
20bind l select-pane -R 21bind l select-pane -R
21 22
22bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}" 23bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}"
23bind r source-file ~/.config/tmux/tmux.conf \; display-message "Config reloaded" 24bind C-t set -g status
25bind r source ~/.config/tmux/tmux.conf \; display-message "Config reloaded"
24 26