Nix flake configuration for my various machines (clients and homelab servers)
0

Configure Feed

Select the types of activity you want to include in your feed.

tmux ricing

Parthiv Krishna (Jun 10, 2026, 2:55 PM -0700) 9fdc6df5 f4655f38

+9 -1
+9 -1
modules/features/apps/tmux.nix
··· 39 39 unbind-key % 40 40 unbind-key \" 41 41 42 - bind @ choose-window 'join-pane -h -s "%%"' 42 + bind ! set -gq @move_pane_source "#{pane_id}" \; display-menu -T "Move pane" "New window" n "break-pane -s \"#{@move_pane_source}\"" "Existing window" e "choose-tree -w 'join-pane -s \"#{@move_pane_source}\" -t \"%%\"'" 43 + bind @ set -gq @move_window_source "#{window_id}" \; display-menu -T "Move window" "New session" n "command-prompt -p 'new session name' 'new-session -d -s \"%%\" \; move-window -k -s \"#{@move_window_source}\" -t \"%%:0\" \; switch-client -t \"%%\"'" "Existing session" e "choose-tree -s 'move-window -s \"#{@move_window_source}\" -t \"%%:\" \; switch-client -t \"%%\"'" 44 + bind D attach-session -c "#{pane_current_path}" 45 + bind / run-shell -b ${pkgs.tmuxPlugins.fuzzback}/share/tmux-plugins/fuzzback/scripts/fuzzback.sh 46 + bind ? list-keys -N 47 + bind f resize-pane -Z 43 48 44 49 # mouse 45 50 set-option -g mouse on ··· 80 85 81 86 # copy mode colors 82 87 set-window-option -g mode-style "fg=#${base00},bg=#${base0A}" 88 + 89 + # more stable terminal 90 + set -g default-terminal "screen-256color" 83 91 ''; 84 92 }; 85 93 };