summaryrefslogtreecommitdiff
path: root/tmux
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2018-12-03 11:52:48 +0100
committerUrbain Vaes <urbain@vaes.uk>2018-12-03 11:52:48 +0100
commit264b48ff259714217ed0c056a99d038dde872249 (patch)
treea53b29cbdcb898f056d898a2289e36b46c8e98c5 /tmux
parentbcd3e89a1144f23a95f11e0243fedb2b7c1eaab9 (diff)
Increase tmux scrollback
Diffstat (limited to 'tmux')
-rw-r--r--tmux/.tmux.conf30
1 files changed, 13 insertions, 17 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf
index a32b9ec..e250d1e 100644
--- a/tmux/.tmux.conf
+++ b/tmux/.tmux.conf
@@ -1,31 +1,27 @@
-set -g default-terminal "screen-256color"
-set -g status on
-set -g mouse on
-
unbind C-b
-set -g prefix C-s
-bind s send-prefix
-
unbind r
-bind r source-file ~/.tmux.conf
-
-set -sg escape-time 0
-set -g allow-rename off
+bind r source-file ~/.tmux.conf
+bind s send-prefix
bind C-n next-window
bind C-p previous-window
-
bind -n C-Left previous-window
bind -n C-Right next-window
+bind P swap-window -t -1
+bind N swap-window -t +1
-bind-key P swap-window -t -1
-bind-key N swap-window -t +1
+set -sg escape-time 0
+set -g prefix C-s
+set -g status on
+set -g mouse on
+set -g allow-rename off
+set -g history-limit 10000
+set -g default-terminal "screen-256color"
+set -g pane-border-status off # Alternative: top/bottom/...
+set -g pane-border-format "#{pane_current_command}"
PILOT_IGNORE=
PILOT_BOUNDARY=ignore
PILOT_MODE=wintab
PILOT_ROOT=$HOME/Dropbox/projects/vim-wintab
source-file $PILOT_ROOT/pilot.tmux
-
-set -g pane-border-status off # Alternative: top/bottom/...
-set -g pane-border-format "#{pane_current_command}"