nix/home/config/tmux/module/Env.nix

11 lines
344 B
Nix
Raw Normal View History

2024-04-30 20:35:45 +03:00
{ ... }: {
text = ''
set -sg escape-time 0
set-option -g default-terminal "tmux-256color"
set-option -g focus-events on
set-option -sa terminal-features "RGB"
2024-06-22 21:35:24 +03:00
set -g allow-passthrough on
set-option -g update-environment "SSH_CLIENT SSH_TTY DOCKER_CONFIG DOCKER_HOST DISPLAY XAUTHORITY BASH_PATH SWAY_SOCK TERM TERM_PROGRAM"
2024-04-30 20:35:45 +03:00
'';
}