diff options
-rw-r--r-- | stow/tmux/.tmux.conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/stow/tmux/.tmux.conf b/stow/tmux/.tmux.conf index 363cf8d..4dd04cd 100644 --- a/stow/tmux/.tmux.conf +++ b/stow/tmux/.tmux.conf @@ -67,7 +67,10 @@ bind C-d \ ##################################### # Help with the color problems -set -g default-terminal "xterm-kitty" +set -g default-terminal "xterm-256color" +# Beautiful 24 bit color +# https://github.com/tmux/tmux/issues/696#issuecomment-360629057 +set -ga terminal-overrides ",xterm-256color:Tc" # Mouse Scrolling set-option -g mouse off # Use vim keybindings in copy mode and help menus @@ -83,8 +86,6 @@ set -g base-index 1 setw -g pane-base-index 1 # Increase the history set -g history-limit 50000 -# Beautiful 24 bit color -set -ga terminal-overrides ",xterm-kitty:Tc" ##################################### # Colors |