91 lines
2.7 KiB
Nix
Raw Normal View History

{
config,
pkgs,
2025-02-10 22:43:56 +01:00
lib,
...
}: {
options = {
crony.tmux.enable = lib.mkEnableOption "Enable tmux and customize it";
};
config = lib.mkIf config.crony.tmux.enable {
2025-01-31 23:10:55 +01:00
# Enable custom tmux bar settings
home.sessionVariables = {
TINTED_TMUX_OPTION_STATUSBAR = 1;
};
2025-02-10 22:51:28 +01:00
home.packages = with pkgs; [
sesh
];
2025-01-31 23:10:55 +01:00
# Setup tmux
programs.tmux = {
enable = true;
escapeTime = 0;
keyMode = "vi";
prefix = "C-Space";
extraConfig = ''
# start window and panes indexing at 1
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# SPEED
set-option -g status-interval 1
# set vi-mode
set-window-option -g mode-keys vi
# keybindings
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
bind "'" split-window -v -c "#{pane_current_path}"
bind '\' split-window -h -c "#{pane_current_path}"
# Vim keybindings for pane movement
setw -g mode-keys vi
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
# Skip kill pane %Number% (y/n) prompt
bind-key x kill-pane
# Don't exit from tmux when closing a session
set -g detach-on-destroy off
# Bar to top
set-option -g status-position top
2025-02-10 22:51:28 +01:00
# Sesh section
bind-key "T" run-shell "sesh connect \"$(
sesh list --icons | fzf-tmux -p 80%,70% \
--no-sort --ansi --border-label ' sesh ' --prompt ' ' \
--header ' ^a all ^t tmux ^g configs ^x zoxide ^d tmux kill ^f find' \
--bind 'tab:down,btab:up' \
--bind 'ctrl-a:change-prompt( )+reload(sesh list --icons)' \
--bind 'ctrl-t:change-prompt(🪟 )+reload(sesh list -t --icons)' \
--bind 'ctrl-g:change-prompt( )+reload(sesh list -c --icons)' \
--bind 'ctrl-x:change-prompt(📁 )+reload(sesh list -z --icons)' \
--bind 'ctrl-f:change-prompt(🔎 )+reload(fd -H -d 2 -t d -E .Trash . ~)' \
--bind 'ctrl-d:execute(tmux kill-session -t {2..})+change-prompt( )+reload(sesh list --icons)' \
--preview-window 'right:55%' \
--preview 'sesh preview {}'
)\""
bind -N "last-session (via sesh) " L run-shell "sesh last"
'';
2025-02-10 22:43:56 +01:00
plugins = with pkgs.tmuxPlugins; [
sensible
yank
fzf-tmux-url
];
};
};
}