aboutsummaryrefslogtreecommitdiff
path: root/tmux
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-06-07 23:44:46 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-06-07 23:44:46 +1200
commite922507da1517542a6a254df19ceb07df952af4b (patch)
tree3738daaf26f32bd1a96f4ccd2bdb947be09bb159 /tmux
parentWork around race condition bug in tmux (diff)
downloaddotfiles-e922507da1517542a6a254df19ceb07df952af4b.tar.gz
dotfiles-e922507da1517542a6a254df19ceb07df952af4b.zip
Couple more tmux options
Diffstat (limited to 'tmux')
-rw-r--r--tmux/tmux.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index f9daaea2..ad64b773 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -37,6 +37,9 @@ set-window-option -g window-status-activity-attr none
if-shell 'test `tput colors` -eq 256' 'set-window-option -g window-status-activity-bg colour237'
if-shell 'test `tput colors` -eq 256' 'set-window-option -g window-status-activity-fg colour248'
+# History
+set-option -g history-limit 100000
+
# Indices
set-option -g base-index 1
@@ -55,6 +58,9 @@ if-shell 'test `tput colors` -eq 256' 'set-option -g pane-active-border-fg colou
if-shell 'test `tput colors` -eq 256' 'set-option -g pane-border-bg colour237'
if-shell 'test `tput colors` -eq 256' 'set-option -g pane-border-fg colour237'
+# Resize
+set-window-option -g aggressive-resize on
+
# Status bar
set-option -g status-left '[#S]'
set-option -g status-right '[#H] #(date +"%F %T")'