blob: 9e798d6098420bc500001e14a38ae28e00cb332a (
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
|
# Prefix key
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# Status bar
set -g status-position top
set -g status-left " #S | "
set -g window-status-format " #W "
set -g window-status-current-format "<#W>"
set -g status-left-length 30
set -g status-right "#{user}@#H | %F | %R "
set -g status-right-length 150
set -g status-interval 5
# Pane
set -g pane-border-status top
set -g pane-border-lines single
set -g pane-border-format " [ ###P #{pane_current_command} ]"
set -g base-index 1
set -g pane-base-index 1
set -g display-panes-time 2000
set -g display-time 2000
|