started new config

This commit is contained in:
2025-12-28 14:48:30 +09:00
commit a743f2c943
17 changed files with 661 additions and 0 deletions

14
home/tmux.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
keyMode = "vi";
newSession = true;
historyLimit = 10000;
baseIndex = 1;
disableConfirmationPrompt = false;
customPaneNavigationAndResize = true;
terminal = "tmux-direct";
};
}