tmux config

This commit is contained in:
2024-05-13 15:10:59 +01:00
parent 8f2751e8f6
commit 7ad0c550d2
+17 -2
View File
@@ -3,18 +3,33 @@
{
programs.tmux = {
enable = true;
shell = "${pkgs.bash}/bin/bash";
clock24 = true;
terminal = "tmux-256color";
plugins = with pkgs; [
tmuxPlugins.sensible
{
plugin = tmuxPlugins.catpuccin;
plugin = tmuxPlugins.catppuccin;
extraConfig = ''
set -g @catpuccin_flavour 'frappe'
set -g @catpuccin_date_time "%H:%M"
'';
}
];
extraConfig = ''
# DESIGN TWEAKS
# don't do anything when a 'bell' rings
set -g visual-activity off
set -g visual-bell off
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'
'';
};
}