nix/home/tmux.nix
2026-03-15 14:18:31 -04:00

136 lines
4.1 KiB
Nix

{lib, ...}: {
programs.tmux = {
enable = true;
extraConfig = ''
# custom
# Set prefix to C-b (default)
set -g prefix C-b
bind C-b send-prefix
set -g mouse on
# Enable extended keys so Shift+Enter and other modified keys work
set -g default-terminal "tmux-256color"
set -s extended-keys on
set -as terminal-features 'xterm*:extkeys'
set -as terminal-features 'xterm-ghostty:RGB'
# Use Vim-style pane navigation (prefix + h/j/k/l)
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Switch sessions with prefix + H/J/K/L (capital)
bind H switch-client -p
bind J switch-client -n
bind K switch-client -p
bind L switch-client -n
# fzf pane switcher
bind f display-popup -w 80% -h 80% -E "\
tmux list-panes -a -F '#{session_name}:#{window_index}.#{pane_index} #{session_name}/#{window_name} [#{pane_current_command}] #{pane_current_path}' \
| fzf --reverse \
--preview 'tmux capture-pane -ep -t {1}' \
--preview-window right:60% \
| awk '{print \$1}' \
| xargs tmux switch-client -t"
# Auto-rename windows to the current running command
set -g automatic-rename on
set -g automatic-rename-format '#{pane_current_command}'
# Start all numbering at 1 instead of 0 for better key reachability
set-option -g base-index 1
set-option -g pane-base-index 1
set-option -g renumber-windows on
# Increase history limit, as we want an "almost" unlimited buffer.
set-option -g history-limit 100000
# Fix Terminal Title display, to not contain tmux specific information
set-option -g set-titles on
set-option -g set-titles-string "#{pane_title}"
# Open new windows and panes in the current working directory of the active pane.
bind c new-window -c "#{pane_current_path}"
bind - split-window -c "#{pane_current_path}"
bind "'" split-window -h -c "#{pane_current_path}"
# Enable support for terminal focus and extended keys.
set-option -s focus-events on
set-option -s extended-keys on
# Disable waiting time when pressing escape, for smoother Neovim usage.
set-option -s escape-time 0
# Styling
RED="#ea6962"
GREEN="#a9b665"
YELLOW="#d8a657"
BLUE="#7daea3"
MAGENTA="#d3869b"
CYAN="#89b482"
BLACK="#1d2021"
DARK_GRAY="#32302F"
LIGHT_GRAY="#4F4946"
BG="#32302F"
FG="#d4be98"
HALF_ROUND_OPEN="#(printf '\uE0B2')"
HALF_ROUND_CLOSE="#(printf '\uE0B0')"
TRIANGLE_OPEN="#(printf '\uE0B2')"
TRIANGLE_CLOSE="#(printf '\uE0B0')"
set-option -g status-position top
set-option -g status-style bg=''${BG},fg=''${FG}
set-option -g prompt-cursor-colour '#d4be98'
set-option -g status-justify left
set-option -g status-left ""
set-option -g status-right "#(~/.config/tmux/session-list.sh)"
set-option -g status-left-length 100
set-option -g status-right-length 100
set-option -g window-status-format "\
\
#I\
#[fg=''${MAGENTA}]:\
#[fg=default]#W\
\
"
set-option -g window-status-current-format "\
#[bg=''${LIGHT_GRAY},fg=default] #I\
#[fg=''${RED}]:\
#[fg=default]#W \
#[bg=default]\
"
set-option -g window-status-separator ""
# Plugins (TPM)
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-save-interval '10'
run '~/.tmux/plugins/tpm/tpm'
'';
};
home.file.".config/tmux/session-list.sh" = {
executable = true;
text = ''
#!/bin/sh
current=$(tmux display-message -p '#S')
tmux list-sessions -F '#S' | while IFS= read -r s; do
if [ "$s" = "$current" ]; then
printf '#[bg=#4F4946,fg=#d8a657] %s #[bg=default,fg=default]' "$s"
else
printf ' %s ' "$s"
fi
done
'';
};
}