Fix truecolor issue with tmux
This commit is contained in:
parent
b546276ae0
commit
0d15b8962f
2 changed files with 9 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 9d805e8b11532617dc713393caf3cc4f6f4b1763
|
Subproject commit 129ba00bad001af19c3bcf326df9f17716d47fa3
|
|
@ -1,11 +1,18 @@
|
||||||
|
set-option -ga terminal-overrides ",st-256color:Tc"
|
||||||
|
|
||||||
setw -g mode-keys vi
|
setw -g mode-keys vi
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
||||||
|
set-option escape-time 0
|
||||||
|
|
||||||
set-option -g allow-rename off
|
set-option -g allow-rename off
|
||||||
|
|
||||||
bind r source-file ~/.tmux.conf
|
bind r source-file ~/.tmux.conf
|
||||||
|
|
||||||
set-option escape-time 0
|
bind h select-pane -L
|
||||||
|
bind j select-pane -D
|
||||||
|
bind k select-pane -U
|
||||||
|
bind l select-pane -R
|
||||||
|
|
||||||
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
||||||
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
|
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
|
||||||
|
|
Loading…
Reference in a new issue