2023-05-03 21:19:59 +00:00
|
|
|
{ config, pkgs, lib, libs, ... }: {
|
2022-09-26 22:50:43 +00:00
|
|
|
programs.tmux = {
|
|
|
|
enable = true;
|
|
|
|
terminal = "tmux-256color";
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
unbind C-b
|
|
|
|
|
|
|
|
set -g prefix C-s
|
|
|
|
bind C-s send-prefix
|
|
|
|
|
|
|
|
bind-key -n C-h select-pane -L
|
|
|
|
bind-key -n C-j select-pane -D
|
|
|
|
bind-key -n C-k select-pane -U
|
|
|
|
bind-key -n C-l select-pane -R
|
|
|
|
|
|
|
|
set-option -g status-keys "emacs"
|
2023-05-13 09:39:44 +00:00
|
|
|
set-option -ga terminal-overrides ",*256col*:alacritty"
|
2022-09-26 22:50:43 +00:00
|
|
|
|
|
|
|
bind-key h split-window -v -c "#{pane_current_path}"
|
|
|
|
bind-key v split-window -h -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
bind -n S-Left resize-pane -L 2
|
|
|
|
bind -n S-Right resize-pane -R 2
|
|
|
|
bind -n S-Down resize-pane -D 1
|
|
|
|
bind -n S-Up resize-pane -U 1
|
|
|
|
|
|
|
|
bind -n C-Left resize-pane -L 10
|
|
|
|
bind -n C-Right resize-pane -R 10
|
|
|
|
bind -n C-Down resize-pane -D 5
|
|
|
|
bind -n C-Up resize-pane -U 5
|
|
|
|
|
2022-12-08 10:12:06 +00:00
|
|
|
# Status line customisation
|
|
|
|
set-option -g status-left-length 100
|
|
|
|
set-option -g status-right-length 100
|
|
|
|
set-option -g status-left " #{session_name} "
|
|
|
|
set-option -g status-right "#{pane_title} "
|
|
|
|
set-option -g status-style "fg=#7C7D83 bg=#242631"
|
|
|
|
set-option -g window-status-format "#{window_index}:#{pane_current_command}#{window_flags} "
|
|
|
|
set-option -g window-status-current-format "#{window_index}:#{pane_current_command}#{window_flags} "
|
|
|
|
set-option -g window-status-current-style "fg=#E9E9EA"
|
|
|
|
set-option -g window-status-activity-style none
|
2022-09-26 22:50:43 +00:00
|
|
|
|
|
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
set -g base-index 1
|
|
|
|
set -g renumber-windows on
|
|
|
|
|
|
|
|
# Break a pane into a new window.
|
|
|
|
bind-key b break-pane -d
|
|
|
|
|
|
|
|
bind-key C-j choose-tree
|
|
|
|
|
|
|
|
# Use vim keybindings in copy mode
|
|
|
|
setw -g mode-keys vi
|
|
|
|
|
|
|
|
# Setup 'v' to begin selection as in Vim
|
|
|
|
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
|
|
|
bind-key -T copy-mode-vi 'y' send -X copy-pipe "reattach-to-user-namespace pbcopy"
|
|
|
|
|
|
|
|
bind C-j split-window -v "tmux list-sessions | sed -E 's/:.*$//' | grep -v \"^$(tmux display-message -p '#S')\$\" | fzf --reverse | xargs tmux switch-client -t"
|
|
|
|
|
|
|
|
bind-key K run-shell 'tmux switch-client -n \; kill-session -t "$(tmux display-message -p "#S")" || tmux kill-session'
|
|
|
|
|
|
|
|
# Allow clearing screen with ctrl-l by using <prefix> C-l
|
|
|
|
bind C-l send-keys "C-l"
|
|
|
|
bind C-k send-keys "C-k"
|
|
|
|
|
|
|
|
# Enable mouse support.
|
|
|
|
setw -g mouse on
|
|
|
|
|
|
|
|
# Remove delay when switching Vim modes.
|
|
|
|
set -sg escape-time 0
|
2022-11-01 20:20:48 +00:00
|
|
|
|
|
|
|
# Smart pane switching with awareness of Vim splits.
|
|
|
|
# See: https://github.com/christoomey/vim-tmux-navigator
|
|
|
|
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
|
|
|
|
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'"
|
|
|
|
|
|
|
|
bind-key -n 'C-\\' if-shell "$is_vim" 'send-keys C-\\\\' 'select-pane -l'
|
|
|
|
bind-key -n 'C-h' if-shell "$is_vim" 'send-keys C-h' 'select-pane -L'
|
|
|
|
bind-key -n 'C-j' if-shell "$is_vim" 'send-keys C-j' 'select-pane -D'
|
|
|
|
bind-key -n 'C-k' if-shell "$is_vim" 'send-keys C-k' 'select-pane -U'
|
|
|
|
bind-key -n 'C-l' if-shell "$is_vim" 'send-keys C-l' 'select-pane -R'
|
|
|
|
|
|
|
|
bind-key -T copy-mode-vi 'C-h' select-pane -L
|
|
|
|
bind-key -T copy-mode-vi 'C-j' select-pane -D
|
|
|
|
bind-key -T copy-mode-vi 'C-k' select-pane -U
|
|
|
|
bind-key -T copy-mode-vi 'C-l' select-pane -R
|
|
|
|
bind-key -T copy-mode-vi 'C-\' select-pane -l
|
2022-12-19 09:42:03 +00:00
|
|
|
|
|
|
|
bind-key -r F new-window t
|
|
|
|
bind-key -r D run-shell "t ~/Code/dotfiles"
|
2023-05-13 09:50:32 +00:00
|
|
|
|
|
|
|
set -g @resurrect-strategy-nvim 'session'
|
2022-09-26 22:50:43 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
plugins = with pkgs; [
|
|
|
|
tmuxPlugins.resurrect
|
2022-11-01 20:20:48 +00:00
|
|
|
tmuxPlugins.vim-tmux-navigator
|
2022-09-26 22:50:43 +00:00
|
|
|
tmuxPlugins.yank
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|