forked from TimothyYe/mydotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf.v2
33 lines (32 loc) · 1.61 KB
/
.tmux.conf.v2
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
#set-option -sa terminal-overrides ',xterm:RGB'
#set-option -g default-terminal "xterm-256color"
#28 - ERROR: `escape-time` (500) is higher than 300ms
# 29 - ADVICE:
# 30 - set escape-time in ~/.tmux.conf:
# 31 set-option -sg escape-time 10
# 32 - https://github.com/neovim/neovim/wiki/FAQ
# 33 - INFO: Checking stuff
# 34 - WARNING: `focus-events` is not enabled. 'autoread' may not work.
# 35 - ADVICE:
# 36 - (tmux 1.9+ only) Set `focus-events` in ~/.tmux.conf:
# 37 set-option -g focus-events on
# 38 - INFO: $TERM: xterm-256color
# 39 - ERROR: $TERM should be "screen-256color" or "tmux-256color" in tmux. Colors might look wrong.
# 40 - ADVICE:
# 41 - Set default-terminal in ~/.tmux.conf:
# 42 set-option -g default-terminal "screen-256color"
# 43 - https://github.com/neovim/neovim/wiki/FAQ
# 44 - WARNING: Neither Tc nor RGB capability set. True colors are disabled. 'termguicolors' won't work properly.
# 45 - ADVICE:
# 46 - Put this in your ~/.tmux.conf and replace XXX by your $TERM outside of tmux:
# 47 set-option -sa terminal-overrides ',XXX:RGB'
# 48 - For older tmux versions use this instead:
# 49 set-option -ga terminal-overrides ',XXX:Tc'
set-option -sg escape-time 10
set-option -g focus-events on
#set-option -g default-terminal "xterm-256color"
set-option -g default-terminal "tmux-256color"
#set-option -sa terminal-overrides ',xterm:RGB'
set-option -sa terminal-overrides ',xterm-256color:RGB'
#set-option -sa terminal-overrides ',cygwin:RGB'
#set-option -ga terminal-overrides ",xterm-256color:Tc"