-
Notifications
You must be signed in to change notification settings - Fork 1
/
_tmux.conf
41 lines (31 loc) · 973 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
#
# Configuration file for TMux
#
#
# NOTES:
#
# * Set window title with C-,
# * https://superuser.com/questions/285381/how-does-the-tmux-color-palette-work/1104214#1104214
#
# Change prefix for match screen and to make it easier on the fingers
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
# Set the status line color
set-option -g status-style bg=black,fg=white
set -g pane-active-border-style bg=colour208,fg=colour208
# Set color of the "tab" for the current window
set-window-option -g window-status-current-style fg=colour0,bg=colour15
# Number of lines saved in the history (for scrolling back)
set-option -g history-limit 15000
# Allow mouse interaction
set-option -g mouse on
# Don't rename windows automatically
set-option -g allow-rename off
#
# NVIM wants these. Run `:checkhealth`
#
# See https://github.com/neovim/neovim/wiki/FAQ
set -g default-terminal "tmux-256color"
set-option -sg escape-time 10
set-option -g focus-events on