blob: a32b9ecdde8c21bc3a65d77a16abe632f78f19f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
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 C-n next-window
bind C-p previous-window
bind -n C-Left previous-window
bind -n C-Right next-window
bind-key P swap-window -t -1
bind-key N swap-window -t +1
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}"
|