blob: 3f95ce2ae15a51a2080e45718c53e72ebb478eec (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
###################################################################
# __ __ _ __ #
# | \/ |_ _ | |_ _ __ ___ _ ___ __ ___ ___ _ __ / _| #
# | |\/| | | | | | __| '_ ` _ \| | | \ \/ / / __/ _ \| '_ \| |_ #
# | | | | |_| | | |_| | | | | | |_| |> < | (_| (_) | | | | _| #
# |_| |_|\__, | (_)__|_| |_| |_|\__,_/_/\_(_)___\___/|_| |_|_| #
# |___/ #
###################################################################
# OPTIONS {{{1
# BASICS {{{2
set-option -g base-index 1
set-option -g pane-base-index 1
set-option -g default-shell /usr/local/bin/zsh
# TERMINAL FEATURES {{{2
set-option -g default-terminal screen-256color
set-option -ga terminal-overrides ',xterm-256color:Tc'
set-option -ga terminal-overrides ',*:Smulx=\e[4::%p1%dm'
set-option -ga terminal-overrides ',*:Setulc=\e[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m'
# APPEARANCE {{{2
set-option -g status-justify left
set-option -g status-left ' [#S][#h] '
set-option -g status-position top
set-option -g status-right '%F (%a) %R '
set-option -g pane-border-lines double
# KEY BINDINGS {{{1
unbind-key -a -T root
unbind-key -a -T prefix
set-option -g status-keys emacs
set-option -g prefix C-t
bind-key ';' command-prompt
bind-key ? list-keys
bind-key t new-window
bind-key n next-window
bind-key p previous-window
bind-key N move-window -a
bind-key P move-window -b
bind-key w switch-client -T tw
bind-key -T tw h split-window -h -b
bind-key -T tw j split-window -v
bind-key -T tw k split-window -v -b
bind-key -T tw l split-window -h
|