dotfiles/home/common/tmux.nix

48 lines
2.1 KiB
Nix
Raw Normal View History

2024-08-11 23:13:02 +02:00
{ ... }:
{
programs.tmux = {
enable = true;
baseIndex = 0;
2024-08-11 23:13:02 +02:00
clock24 = true;
escapeTime = 500;
2024-08-11 23:13:02 +02:00
mouse = true;
shortcut = "o";
extraConfig = ''
set -g allow-passthrough on
set -g default-terminal "tmux-256color"
2024-08-11 23:13:02 +02:00
set -g display-panes-time 3000
set -g history-limit 10000
set -g status off
set -g status-style "italics,reverse"
set -g status-left-length 0
set -g status-right-length 0
set -g status-left '#W #{pane_current_path}'
set -g status-right '%F | %R'
set -g status off
set -g set-titles on
set -g set-titles-string "#H - #T"
set -g update-environment "SSH_AUTH_SOCK"
setenv -g "SSH_AUTH_SOCK" "$XDG_RUNTIME_DIR/ssh-agent"
2024-08-11 23:13:02 +02:00
setw -g alternate-screen on
setw -g automatic-rename off
setw -g window-status-format ""
setw -g window-status-current-format ""
setw -g window-status-separator ""
bind -n M-1 if-shell 'tmux select-window -t nvim' refresh-client 'new-window -S -n nvim nvim --listen $XDG_RUNTIME_DIR/nvim-persistent.sock'
bind -n M-2 if-shell 'tmux select-window -t t1' refresh-client 'new-window -S -n t1'
bind -n M-3 if-shell 'tmux select-window -t t2' refresh-client 'new-window -S -n t2'
bind -n M-4 if-shell 'tmux select-window -t t3' refresh-client 'new-window -S -n t3'
bind -n M-5 if-shell 'tmux select-window -t t4' refresh-client 'new-window -S -n t4'
bind -n M-6 if-shell 'tmux select-window -t t5' refresh-client 'new-window -S -n t5'
bind -n M-7 if-shell 'tmux select-window -t t6' refresh-client 'new-window -S -n t6'
bind -n M-8 if-shell 'tmux select-window -t t7' refresh-client 'new-window -S -n t7'
bind -n M-9 if-shell 'tmux select-window -t t8' refresh-client 'new-window -S -n t8'
bind -n M-0 if-shell 'tmux select-window -t t9' refresh-client 'new-window -S -n t9'
2024-08-11 23:13:02 +02:00
bind -T copy-mode-vi WheelUpPane select-pane \; send-keys -X -N 1 scroll-up
bind -T copy-mode-vi WheelDownPane select-pane \; send-keys -X -N 1 scroll-down
bind C-s set-option -g status
bind K confirm kill-server
'';
};
}