fixed termguicolors not working on tmux with neovim

This commit is contained in:
aminnairi
2023-12-02 15:32:03 +01:00
parent b992fa9f61
commit debad03f8c
+4 -4
View File
@@ -39,10 +39,7 @@ unbind %
set -g mouse off
# Set the default terminal
set -s default-terminal 'tmux-256color'
# Set the correct terminal feature for better termguicolors in Neovim
set-option -sa terminal-features ',XXX:RGB'
set -s default-terminal 'alacritty'
# open/split window with current path
bind '"' split-window -c "#{pane_current_path}"
@@ -52,6 +49,9 @@ bind c new-window -c "#{pane_current_path}"
# Longer workspace names
set -g status-left-length 20
# Terminal feature specific to Neovim
set-option -sa terminal-overrides ',alacritty:Tc'
# Tmux plugins
set -g @plugin "janoamaral/tokyo-night-tmux"
set -g @plugin 'tmux-plugins/tpm'