Initial Commit

This commit is contained in:
Lorenzo Good 2025-05-16 18:11:06 -05:00
commit d18f18fc29
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
28 changed files with 1415 additions and 0 deletions

26
common/tmux/default.nix Normal file
View file

@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
...
}: {
programs.tmux = {
enable = true;
baseIndex = 1;
clock24 = true;
keyMode = "vi";
newSession = true;
resizeAmount = 10;
shortcut = "b";
terminal = "screen-256color";
plugins = with pkgs.tmuxPlugins; [
];
extraConfig = builtins.readFile ./tmux.conf;
customPaneNavigationAndResize = true;
};
}