This commit is contained in:
2024-05-13 14:58:07 +01:00
parent e60884f99b
commit 8f2751e8f6
4 changed files with 289 additions and 13 deletions
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
shell = "${pkgs.bash}/bin/bash";
clock24 = true;
terminal = "tmux-256color";
plugins = with pkgs; [
tmuxPlugins.sensible
{
plugin = tmuxPlugins.catpuccin;
extraConfig = ''
set -g @catpuccin_flavour 'frappe'
set -g @catpuccin_date_time "%H:%M"
'';
}
];
};
}