1
Fork 0
nixos-system-config/modules/packages/tmux.nix

42 lines
952 B
Nix
Raw Normal View History

2024-11-24 12:29:59 +01:00
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
customPaneNavigationAndResize = true;
baseIndex = 1;
2024-11-24 12:29:59 +01:00
plugins = with pkgs; [
tmuxPlugins.resurrect
];
extraConfig = ''
2024-11-24 16:12:25 +01:00
# Enable mouse
setw -g mouse on
2024-11-24 12:29:59 +01:00
# Neovim
set-option -sg escape-time 10
set-option -g focus-events on
# vi mode
set -g mode-keys vi
set -g status-keys vi
# Rebind prefix key to C-a
set -g prefix C-a
bind C-a send-prefix
unbind C-b
# Clipboard
set -ga update-environment WAYLAND_DISPLAY
bind Escape copy-mode
bind p run-shell 'tmux set-buffer -- "$(wl-paste -t "text/plain;charset=utf-8")"; tmux paste-buffer'
bind -T copy-mode-vi 'v' send -X begin-selection
bind -T copy-mode-vi 'y' send -X copy-pipe 'wl-copy'
set -s set-clipboard off
# Status bar
set -g status-style bg=default
set -g status-fg 4
'';
};
}