diff --git a/modules/home-manager/tmux.nix b/modules/home-manager/tmux.nix index 72c7626..9359d81 100644 --- a/modules/home-manager/tmux.nix +++ b/modules/home-manager/tmux.nix @@ -8,10 +8,10 @@ plugins = with pkgs; [ tmuxPlugins.sensible { - plugin = tmuxPlugins.catppuccin; + plugin = tmuxPlugins.tokyo-night-tmux; extraConfig = '' - set -g @catpuccin_flavour 'frappe' - set -g @catpuccin_date_time "%H:%M" + set -g @tokyo-night-tmux_theme night + set -g @tokyo-night-tmux_transparent 1 ''; } ]; @@ -24,12 +24,9 @@ set -g visual-silence off setw -g monitor-activity off set -g bell-action none - - # copy mode - setw -g mode-style 'fg=colour1 bg=colour18 bold' - - # messages - set -g message-style 'fg=colour2 bg=colour0 bold' + + set -g base-index 1 + set -g pane-base-index 1 ''; }; }