aboutsummaryrefslogtreecommitdiff
path: root/home/programs/cli/tmux.nix
blob: 776c443632bbcbe697795600c2f1493193d536a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:
{
  programs.tmux = {
    enable = true;
    aggressiveResize = true;
    baseIndex = 1;
    clock24 = true;
    escapeTime = 0;
    historyLimit = 100000;
    keyMode = "emacs";
    mouse = true;
    shell = "${pkgs.fish}/bin/fish";
    shortcut = "z";
    terminal = "tmux-256color";
  };
}