summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--skel/.tmux.conf36
1 files changed, 36 insertions, 0 deletions
diff --git a/skel/.tmux.conf b/skel/.tmux.conf
new file mode 100644
index 0000000..db7a2ed
--- /dev/null
+++ b/skel/.tmux.conf
@@ -0,0 +1,36 @@
+set-option -g prefix C-a
+set-option -g prefix2 C-b
+bind-key a send-prefix
+bind-key b send-prefix -2
+bind-key C-a last-window
+bind-key C-b last-pane
+bind-key A command-prompt -I'#W' "rename-window '%%'"
+bind-key r source-file ~/.tmux.conf
+bind-key Escape copy-mode
+bind-key Space list-panes
+bind-key Enter break-pane
+
+# Set that stupid Esc-Wait off, so VI works again
+set-option -sg escape-time 0
+set-option -g repeat-time 500
+
+set-option -g history-limit 16000
+set-option -g default-terminal screen-256color
+
+set-option -g utf8 on
+set-option -g monitor-activity on
+
+set-option -g mouse-utf8 on
+set-option -g mouse-select-pane on
+set-option -g mouse-select-window on
+set-window-option -g mode-mouse on
+set-window-option -g aggressive-resize on
+
+set-option -g renumber-windows on
+
+set-option -g status-bg brightgreen
+set-option -g status-fg black
+set-option -g status-left '[ #H ][ #S ]['
+set-option -g status-left-length 32
+set-option -g status-right '][ load #(cut -d " " -f 1-3 /proc/loadavg) ][ %Y-%m-%d %H:%M ]'
+set-option -g status-right-length 48