nix-config/tmux.nix
2020-03-10 22:50:06 +01:00

14 lines
265 B
Nix

{ config, ... }:
{
programs.tmux = {
enable = true;
terminal = "xterm-256color";
extraConfig = ''
set -g status on
set-option -g set-titles on
set-option -g automatic-rename on
set-window-option -g mode-keys vi
'';
};
}