2024-02-27 14:16:52 -05:00

23 lines
480 B
Nix

{ pkgs, config, ... }:
{
programs = {
tmux = {
enable = true;
shortcut = "Space";
mouse = true;
baseIndex = 1;
tmuxp.enable = true;
plugins = with pkgs; [
tmuxPlugins.vim-tmux-navigator
];
extraConfig = ''
set-option -sa terminal-overrides ",xterm*:Tc"
set -s escape-time 0
set -g status-left-length 30 # could be any number
set -g status-style 'bg=#333333 fg=#5eacd3'
'';
};
};
}