From 213042df743085b77efc036af3390832cbcba187 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Thu, 14 May 2026 21:51:23 -0400 Subject: [PATCH] Customized tmux (#32) Changed out the theme on tmux to one more maintained. Also set wezterm to open tmux upon launch of the terminal. Reviewed-on: https://git.wesirvin.com/wesley/dotfiles/pulls/32 --- tmux/dot-config/tmux/tmux.conf | 19 ++++++++++++++++--- wezterm/dot-wezterm.lua | 1 + 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/tmux/dot-config/tmux/tmux.conf b/tmux/dot-config/tmux/tmux.conf index edd9e88..6d4a311 100644 --- a/tmux/dot-config/tmux/tmux.conf +++ b/tmux/dot-config/tmux/tmux.conf @@ -1,11 +1,24 @@ set -g prefix ^A -set -g @plugin 'fabioluciano/tmux-tokyo-night' set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'fabioluciano/tmux-powerkit' + +# Tokyo Night config +set -g @powerkit_plugin_theme "tokyo-night" +set -g @powerkit_plugin_theme_variant "storm" +set -g @powerkit_plugins "cpu,memory,netspeed,datetime" +set -g @powerkit_plugin_netspeed_iface "wlp4s0" +set -g @powerkit_plugin_datetime_format "%m/%d/%y %H:%M" +set -g @powerkit_plugin_cache_enabled "true" +set -g @powerkit_separator_style "rounded" + +# Set mouse on so that we can scroll with the mouse +set -g mouse on -set -g @theme_variation 'storm' -set -g @theme_disable_plugins 1 #set -g @theme_plugin_datetime_format '%a %d %b %Y' run '~/.tmux/plugins/tpm/tpm' + +# Status bar position +set -g status-position bottom diff --git a/wezterm/dot-wezterm.lua b/wezterm/dot-wezterm.lua index 70e7323..82f43b5 100644 --- a/wezterm/dot-wezterm.lua +++ b/wezterm/dot-wezterm.lua @@ -10,5 +10,6 @@ config.enable_tab_bar = false config.initial_cols = 205 config.initial_rows = 45 config.font_size = 10 +config.default_prog = { "tmux", "new-session", "-A", "-s", "main" } return config