updated tmux settings to make truecolor work
This commit is contained in:
parent
845f7ef5e8
commit
eac2066d3e
1 changed files with 10 additions and 5 deletions
15
tmux.conf
15
tmux.conf
|
@ -12,16 +12,18 @@ set -g mouse on
|
||||||
# / /| / __/ /_/ / /_/ / / / / / /_/ (__ )
|
# / /| / __/ /_/ / /_/ / / / / / /_/ (__ )
|
||||||
#/_/ |_\___/\__, /_.___/_/_/ /_/\__,_/____/
|
#/_/ |_\___/\__, /_.___/_/_/ /_/\__,_/____/
|
||||||
# /____/
|
# /____/
|
||||||
|
|
||||||
|
# detach
|
||||||
unbind d
|
unbind d
|
||||||
bind M-Escape detach-client
|
bind M-Escape detach-client
|
||||||
|
|
||||||
# Splits
|
# splits
|
||||||
unbind '"'
|
unbind '"'
|
||||||
unbind %
|
unbind %
|
||||||
bind h split-window -h
|
bind h split-window -h
|
||||||
bind v split-window -v
|
bind v split-window -v
|
||||||
|
|
||||||
# Navigation
|
# navigation
|
||||||
unbind w
|
unbind w
|
||||||
unbind s
|
unbind s
|
||||||
unbind a
|
unbind a
|
||||||
|
@ -42,17 +44,20 @@ bind e next-window
|
||||||
# /_/ |_/ .___/ .___/\___/\__,_/_/ \__,_/_/ /_/\___/\___/
|
# /_/ |_/ .___/ .___/\___/\__,_/_/ \__,_/_/ /_/\___/\___/
|
||||||
# /_/ /_/
|
# /_/ /_/
|
||||||
|
|
||||||
# Modes
|
# fix truecolor
|
||||||
|
set-option -g terminal-overrides ",xterm*:Tc"
|
||||||
|
|
||||||
|
# modes
|
||||||
setw -g clock-mode-colour colour7
|
setw -g clock-mode-colour colour7
|
||||||
setw -g clock-mode-style 12
|
setw -g clock-mode-style 12
|
||||||
|
|
||||||
setw -g mode-style 'fg=colour15 bold bg=colour235'
|
setw -g mode-style 'fg=colour15 bold bg=colour235'
|
||||||
|
|
||||||
# Panes
|
# panes
|
||||||
set -g pane-border-style 'fg=colour251'
|
set -g pane-border-style 'fg=colour251'
|
||||||
set -g pane-active-border-style 'fg=colour69'
|
set -g pane-active-border-style 'fg=colour69'
|
||||||
|
|
||||||
# Status Bar
|
# status bar
|
||||||
set -g status-position bottom
|
set -g status-position bottom
|
||||||
set -g status-justify left
|
set -g status-justify left
|
||||||
set -g status-style 'fg=colour15'
|
set -g status-style 'fg=colour15'
|
||||||
|
|
Loading…
Reference in a new issue