From a395c388ffce29b0bdafce3d820a42b9d0905743adc4d5679a8540eef8e82343 Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 9 Jul 2024 22:43:48 +0200 Subject: [PATCH] update tmux to use 256colors, switch to tokyo-night for tmux --- tmux/.tmux.conf | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index a83c93c..a972704 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -2,8 +2,11 @@ unbind r bind r source-file ~/.tmux.conf -# General tmux settings +# Setup 256bit color for all terminal emulators set -g default-terminal "screen-256color" +set -ag terminal-overrides ",alacritty:RGB,xterm-256color:RGB,gnome*:RGB" + +# General tmux settings set -g mouse on set -g status-interval 5 set -g status-position top @@ -25,13 +28,15 @@ set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'dracula/tmux' set -g @plugin 'christoomey/vim-tmux-navigator' +set -g @plugin "janoamaral/tokyo-night-tmux" -# Dracula customizations -set -g @dracula-show-powerline true -set -g @dracula-plugins "ssh-session cpu-usage ram-usage time" -set -g @dracula-show-flags true -set -g @dracula-show-empty-plugins false -set -g @dracula-show-left-icon window +# Tokyo Night Customize +set -g @tokyo-night-tmux_window_id_style digital +set -g @tokyo-night-tmux_pane_id_style hsquare +set -g @tokyo-night-tmux_zoom_id_style dsquare +set -g @tokyo-night-tmux_show_datetime 1 +set -g @tokyo-night-tmux_date_format DMY +set -g @tokyo-night-tmux_time_format 24H # Initialize TMUX plugin manager run '~/.tmux/plugins/tpm/tpm'