diff options
author | Cody Hiar <cody@hiar.ca> | 2021-12-12 21:21:18 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-12-12 21:21:18 -0700 |
commit | 736246f2ea70b9e120908d97e153932f4b89f94a (patch) | |
tree | 97bc606a4694e890e8a380181f5e2a1bc4994d7f | |
parent | 62e39ae73e4c98a7b55df58ab68a08c15a140eb1 (diff) |
use xterm instead of kitty
-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 |