Merge changes from work

This commit is contained in:
Martin
2024-05-17 16:30:29 +02:00
parent 386d856c60
commit 2a2279ee29
10 changed files with 89 additions and 17 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
programs.tmux = {
@ -9,7 +9,6 @@
escapeTime = 0;
terminal = "screen-256color";
tmuxp.enable = true;
# newSession = true;
extraConfig = ''
set -g display-time 1500
@ -58,4 +57,10 @@
set -g pane-border-style "bg=#eeeeee,fg=#999999"
'';
};
home.shellAliases = lib.mkMerge [ {
"o" = "tmuxp";
"ol" = "tmuxp load";
}
];
}