39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
set -g history-limit 50000
|
|
set -g mouse on
|
|
set -sg escape-time 50
|
|
|
|
set -g default-terminal "xterm-256color"
|
|
set -as terminal-overrides ",xterm-*:Tc"
|
|
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
bind h split-window -h
|
|
bind v split-window -v
|
|
unbind '"'
|
|
unbind %
|
|
bind r source-file ~/.tmate.conf
|
|
bind -n M-Left select-window -p
|
|
bind -n M-Right select-window -n
|
|
set-option -g allow-rename off
|
|
bind -n C-t new-window
|
|
|
|
bind -n M-0 select-window -T -t 0
|
|
bind -n M-1 select-window -T -t 1
|
|
bind -n M-2 select-window -T -t 2
|
|
bind -n M-3 select-window -T -t 3
|
|
bind -n M-4 select-window -T -t 4
|
|
bind -n M-5 select-window -T -t 5
|
|
bind -n M-6 select-window -T -t 6
|
|
bind -n M-7 select-window -T -t 7
|
|
bind -n M-8 select-window -T -t 8
|
|
bind -n M-9 select-window -T -t 9
|
|
|
|
set -g status-style bg='#44475a',fg='#bd93f9'
|
|
set -g status-interval 1
|
|
set -g message-style bg='#44475a',fg='#8be9fd'
|
|
set-window-option -g window-status-style fg='#bd93f9',bg=default
|
|
set-window-option -g window-status-current-style fg='#ff79c6',bg='#282a36'
|
|
set -g window-status-current-format "#[fg=#44475a]#[bg=#bd93f9]#[fg=#f8f8f2]#[bg=#bd93f9] #I #W #[fg=#bd93f9]#[bg=#44475a]"
|
|
set -g window-status-format "#[fg=#f8f8f2]#[bg=#44475a]#I #W #[fg=#44475a]"
|