From b1f9981ac37198f4c3fa3a7086872bff0b49fc9c Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Thu, 27 Jul 2023 09:42:43 +0200 Subject: [PATCH] better terminal colors using neovim --- tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 8a8d598..a9a9336 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -35,6 +35,9 @@ 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' + # open/split window with current path bind '"' split-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"