15 lines
306 B
Nix
15 lines
306 B
Nix
|
{
|
||
|
programs.tmux = {
|
||
|
enable = true;
|
||
|
escapeTime = 0;
|
||
|
historyLimit = 5000;
|
||
|
terminal = "screen-256color";
|
||
|
extraConfig = ''
|
||
|
bind c new-window -c "#{pane_current_path}"
|
||
|
|
||
|
set -ga terminal-overrides ",alacritty:RGB"
|
||
|
set -ga terminal-overrides ",alacritty:Tc"
|
||
|
'';
|
||
|
};
|
||
|
}
|