Add tmux configs
This commit is contained in:
parent
688508cbde
commit
4f9ae28afd
2 changed files with 15 additions and 0 deletions
|
@ -9,5 +9,6 @@
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./nixvim.nix
|
./nixvim.nix
|
||||||
./rbw.nix
|
./rbw.nix
|
||||||
|
./tmux.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
14
home-manager/common/software/cli/tmux.nix
Normal file
14
home-manager/common/software/cli/tmux.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ ... }: {
|
||||||
|
programs.tmux = {
|
||||||
|
enable = true;
|
||||||
|
mouse = true;
|
||||||
|
tmuxinator.enable = true;
|
||||||
|
tmuxp.enable = true;
|
||||||
|
clock24 = true;
|
||||||
|
keyMode = "vi";
|
||||||
|
terminal = "xterm-256color";
|
||||||
|
extraConfig = {
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue