blob: ebad56be226323ed2517e3b903cddb6fbc57befe (
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
|
# vim: ft=tmux
# Styles
setw -g mode-style fg=yellow,bg=default,bright
setw -g window-status-style fg=default,bg=default,dim
setw -g window-status-current-style fg=yellow,bg=default,dim
set -g message-style fg=default,bg=red,bright
set -g status-style fg=default,bg=black,bright
set -g pane-active-border-style fg=default,bg=black
# Options
set -g bell-action any
set -g history-limit 50000
set -g status on
#set -g status-keys vi
set -g set-titles on
set -g default-terminal "screen-256color"
set -g set-titles-string "tmux:#I [ #W ]"
set -g base-index 1
setw -g automatic-rename on
setw -g clock-mode-style 24
bind r source-file ~/.config/tmux/config
|