-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
44 lines (33 loc) · 978 Bytes
/
.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
38
39
40
41
42
43
44
# Change previx from "Ctrl+b" to "Alt+y"
unbind C-b
set-option -g prefix M-y
bind-key M-y send-prefix
# Set history limit
set -g history-limit 10000
# Set monitor activity
set -g monitor-activity on
set -g visual-activity on
# Set mouse mode
set -g mouse on
# Set screen colors
set -g default-terminal screen-256color
# Change the status bar style
set -g status-style none
set -g status-position bottom
set -g status-justify left
# Remove the left and right status
set -g status-left ""
set -g status-right ""
# Change the justify of the status
set -g status-justify right
# Change the status format
setw -g window-status-format "#[fg=colour0,bg=colour8] #W "
setw -g window-status-current-format "#[fg=colour0,bg=colour4] #W "
# Change pane borders
setw -g pane-border-style fg=colour4
setw -g pane-active-border-style fg=colour4
# Set window split
bind-key -n M-v split-window -h
bind-key -n M-h split-window -v
# Reload config
bind -n M-r source-file ~/.tmux.conf