29 lines
660 B
Nix
29 lines
660 B
Nix
{ modules, ... }:
|
|
{
|
|
modules.tmux = {
|
|
homeManager =
|
|
{
|
|
home,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
plugins = with pkgs.tmuxPlugins; [
|
|
sensible
|
|
minimal-tmux-status
|
|
];
|
|
extraConfig = ''
|
|
set-option -g default-terminal "tmux-256color"
|
|
set -as terminal-features ",xterm-256color:RGB"
|
|
set -g status-bg black
|
|
set -g status-fg white
|
|
set -g mouse on
|
|
set -g extended-keys on
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|