tmux: Add configuration

This commit is contained in:
caem 2025-02-19 22:21:56 +01:00
parent 533b6a4720
commit 3893f229b7
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
wl-clipboard
];
programs.tmux = {
enable = true;
baseIndex = 1;
historyLimit = 696969696969;
mouse = true;
newSession = true;
terminal = ",xterm-256color:Tc";
clock24 = true;
extraConfig = ''
set -s copy-command 'wl-copy'
'';
};
}