{ lib, config, pkgs, ... }: let tmux-super-fingers = pkgs.tmuxPlugins.mkTmuxPlugin { pluginName = "tmux-super-fingers"; version = "unstable-2023-01-06"; src = pkgs.fetchFromGitHub { owner = "artemave"; repo = "tmux_super_fingers"; rev = "2c12044984124e74e21a5a87d00f844083e4bdf7"; sha256 = "sha256-cPZCV8xk9QpU49/7H8iGhQYK6JwWjviL29eWabuqruc="; }; }; in { options.swarselmodules.tmux = lib.mkEnableOption "tmux settings"; config = lib.mkIf config.swarselmodules.tmux { home.packages = with pkgs; [ lsof sesh ]; programs.tmux = { enable = true; shell = "${pkgs.zsh}/bin/zsh"; terminal = "tmux-256color"; historyLimit = 100000; plugins = with pkgs; [ tmuxPlugins.tmux-thumbs { plugin = tmux-super-fingers; extraConfig = "set -g @super-fingers-key f"; } tmuxPlugins.sensible # must be before continuum edits right status bar { plugin = tmuxPlugins.catppuccin; extraConfig = '' set -g @catppuccin_flavour 'frappe' set -g @catppuccin_window_tabs_enabled on set -g @catppuccin_date_time "%H:%M" ''; } { plugin = tmuxPlugins.resurrect; extraConfig = '' set -g @resurrect-strategy-vim 'session' set -g @resurrect-strategy-nvim 'session' set -g @resurrect-capture-pane-contents 'on' ''; } { plugin = tmuxPlugins.continuum; extraConfig = '' set -g @continuum-restore 'on' set -g @continuum-boot 'on' set -g @continuum-save-interval '10' ''; } tmuxPlugins.better-mouse-mode tmuxPlugins.yank ]; extraConfig = '' set -g default-terminal "tmux-256color" set -ag terminal-overrides ",xterm-256color:RGB" set-option -g prefix C-a unbind-key C-b bind-key C-a send-prefix set -g mouse on # Open new split at cwd of current split bind | split-window -h -c "#{pane_current_path}" bind - split-window -v -c "#{pane_current_path}" # Use vim keybindings in copy mode set-window-option -g mode-keys vi # v in copy mode starts making selection bind-key -T copy-mode-vi v send-keys -X begin-selection bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel # Escape turns on copy mode bind Escape copy-mode set-option -g status-position top # make Prefix p paste the buffer. unbind p bind p paste-buffer ''; }; }; }