-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
37 lines (30 loc) · 1.21 KB
/
tmux.conf
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
#set -g default-shell /usr/bin/zsh
#set -g default-command /usr/bin/zsh
set -g mouse on
set-option -g status on
set-option -g status-interval 5
set-option -g status-justify "centre"
set-option -g status-left-length 90
set-option -g status-right-length 90
set-option -g status-left "#(~/.tmux/tmux-powerline/powerline.sh left)"
set-option -g status-right "#(~/.tmux/tmux-powerline/powerline.sh right)"
# first panel index on 1 not 0 as the default
set-option -g base-index 1
# Default window title colours.
set-window-option -g window-status-style fg=white
set-window-option -g window-status-style bg=default
set-window-option -g window-status-style dim
# Active window title colours.
set-window-option -g window-status-current-style fg=colour015
set-window-option -g window-status-current-style bg=colour33
set-window-option -g window-status-current-style bright
#panel colors settins
set -g pane-border-style bg=colour016
set -g pane-active-border-style bg=colour154
set -g pane-active-border-style fg=colour129
# Prefix = C-t instead of the dedault Ctrl-B
unbind-key 'C-b'
set-option -g prefix 'C-t'
bind-key 'C-t' send-prefix
# easy tmux,conf reload
bind-key r source-file ~/.tmux.conf\; display-message "tmux.conf is reloaded"