dotfiles/lib/shared/modules/tmux.nix

83 lines
2.5 KiB
Nix
Raw Normal View History

2024-03-18 20:33:28 +00:00
{ pkgs, ... }:
let
inherit (pkgs) tmuxPlugins;
in
{
2023-11-06 23:48:09 +00:00
programs.tmux = {
enable = true;
2024-03-16 22:12:53 +00:00
2024-06-15 11:17:07 +00:00
terminal = "tmux-256color";
2023-11-06 23:48:09 +00:00
extraConfig = ''
2024-08-13 08:11:06 +00:00
set-option -g status-keys "vi"
2023-12-20 00:55:07 +00:00
set-option -sa terminal-features "''${TERM}:RGB"
2023-11-06 23:48:09 +00:00
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
# Status line customisation
set-option -g status-left ""
set-option -g status-right " #{session_name}"
2023-11-06 23:48:09 +00:00
set-option -g status-right-length 100
2024-06-24 21:36:13 +00:00
set-option -g status-style "fg=#7C7D83 bg=default"
2023-11-15 12:51:18 +00:00
set-option -g window-status-activity-style none
2023-11-06 23:48:09 +00:00
set-option -g window-status-current-format "#{window_index}:#{pane_current_command}#{window_flags} "
set-option -g window-status-current-style "fg=#E9E9EA"
2023-11-15 12:51:18 +00:00
set-option -g window-status-format "#{window_index}:#{pane_current_command}#{window_flags} "
2023-11-06 23:48:09 +00:00
bind c new-window -c "#{pane_current_path}"
set -g base-index 1
2024-08-13 08:11:06 +00:00
set -g pane-base-index 1
2023-11-06 23:48:09 +00:00
set -g renumber-windows on
# Break a pane into a new window.
bind-key b break-pane -d
bind-key J command-prompt -p "join pane from: " "join-pane -h -s '%%'"
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 wl-copy
2023-11-06 23:48:09 +00:00
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
2023-12-13 06:32:21 +00:00
set-option -g pane-active-border-style "fg=#1f2335"
set-option -g pane-border-style "fg=#1f2335"
2024-08-13 08:11:06 +00:00
bind-key -r f run-shell "tmux new-window t"
2023-11-06 23:48:09 +00:00
set -g @resurrect-strategy-nvim 'session'
'';
plugins = [
tmuxPlugins.resurrect
tmuxPlugins.vim-tmux-navigator
tmuxPlugins.yank
];
2023-11-06 23:48:09 +00:00
};
}