From 296d215a88a326cccec94274a6edf069fc8cf33d Mon Sep 17 00:00:00 2001 From: Doug Masiero Date: Thu, 15 May 2025 17:32:56 -0400 Subject: [PATCH] Support colors and ~~strikethrough~~ --- .tmux.conf | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index f01b86f..102cc04 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,4 +1,4 @@ -# Vim stuff +# Add vim functionality set-window-option -g mode-keys vi bind-key -T copy-mode-vi v send-keys -X begin-selection bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel @@ -32,21 +32,14 @@ set -g @tmux_power_show_host false set -g @tmux_power_show_session true # Session options -set -g default-terminal "tmux-256color" -set -g terminal-overrides "xterm-256color:RGB" -set -a terminal-features "xterm*:strikethrough" +set -g default-terminal "tmux-256color" # Support 256 colors +set -g terminal-overrides "xterm-256color:RGB" # Support 256 colors +set -a terminal-features "xterm*:strikethrough" # Support ~~strikethrough~~ set -g base-index 1 # Start window numbering at 1 set -g history-limit 10000 # Increase scrollback buffer size set -g repeat-time 1000 # Set repeat delay set -g detach-on-destroy off # Prevent tmux from detaching when session is destroyed. -# The following colors are used as gradient colors -#set -g @tmux_power_g0 "#262626" -#set -g @tmux_power_g1 "#303030" -#set -g @tmux_power_g2 "#3a3a3a" -#set -g @tmux_power_g3 "#444444" -#set -g @tmux_power_g4 "#626262" - # Initialize TPM run '~/.tmux/plugins/tpm/tpm'