-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtmux.conf
More file actions
30 lines (22 loc) · 702 Bytes
/
tmux.conf
File metadata and controls
30 lines (22 loc) · 702 Bytes
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
# vim movements
setw -g mode-keys vi
bind -Tcopy-mode-vi v send -X begin-selection
# improve colors
set -g default-terminal 'screen-256color'
# remove administrative debris (session name, hostname, time) in status bar
set -g status-left ''
set -g status-right ''
# Set inactive/active window styles
set -g window-style 'fg=colour250,bg=colour60'
set -g window-active-style 'fg=colour250,bg=black'
# Pane border
#set -g pane-active-border-style bg=colour236,fg=colour51
#set -g pane-border-style bg=colour235,fg=colour238
# Status Bar
set -g status-bg magenta
# Increase scrollback lines
set -g history-limit 10000
# Mouse support
set -g mouse on
# Reload config
bind r source-file ~/.tmux.conf