summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-12-19 11:08:44 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-12-19 11:08:44 -0600
commit64269263d4d8dce3bf7be137c48006d5910b8f3a (patch)
tree29a5ccfb4806c2b01cafb2c40f6e85617d60f375 /.config
parented2770e16928f89c0f8f64bce12041e56e4971a8 (diff)
fix nvim/terminal colors
Diffstat (limited to '.config')
-rw-r--r--.config/tmux/tmux.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index e6d5e64..f32919e 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -3,6 +3,12 @@ set -g mouse on
# required so 0;10;1c doesn't appear when starting tmux
set -sg escape-time 50
+# fix Colors
+# https://www.reddit.com/r/neovim/comments/uanvdw/neovimtmux_color_problem/
+# https://github.com/SmiteshP/Dotfiles/blob/946cde45d8349d50446629939cebd7e4091a3775/.tmux.conf#L3
+set -g default-terminal "screen-256color"
+set -as terminal-features ",xterm-256color:RGB"
+
### tpm config from here onwards
# general
set -g @plugin 'tmux-plugins/tpm'