devos/users/profiles/tmux/default.nix

15 lines
306 B
Nix
Raw Normal View History

{
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"
'';
};
}