nix-config/home/tmux/default.nix

69 lines
2 KiB
Nix
Raw Normal View History

2021-03-13 01:02:34 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.tmux;
hasGUI = lib.any lib.id [
config.my.home.x.enable
(config.my.home.wm.windowManager != null)
];
2021-03-13 01:02:34 +01:00
in
2021-02-20 15:34:33 +01:00
{
2023-03-16 17:39:13 +01:00
options.my.home.tmux = with lib; {
enable = my.mkDisableOption "tmux terminal multiplexer";
2021-03-13 01:02:34 +01:00
};
config.programs.tmux = lib.mkIf cfg.enable {
2021-02-20 15:34:33 +01:00
enable = true;
2021-03-27 16:44:27 +01:00
keyMode = "vi"; # Home-row keys and other niceties
2021-02-20 15:34:33 +01:00
clock24 = true; # I'm one of those heathens
escapeTime = 0; # Let vim do its thing instead
historyLimit = 50000; # Bigger buffer
2021-02-20 15:51:54 +01:00
terminal = "tmux-256color"; # I want accurate termcap info
2021-02-20 15:37:39 +01:00
plugins = with pkgs.tmuxPlugins; [
# Open high-lighted files in copy mode
open
# Better pane management
pain-control
# Better session management
sessionist
{
# X clipboard integration
plugin = yank;
extraConfig = ''
# Use 'clipboard' because of misbehaving apps (e.g: firefox)
set -g @yank_selection_mouse 'clipboard'
# Stay in copy mode after yanking
set -g @yank_action 'copy-pipe'
'';
}
2021-02-20 15:37:39 +01:00
{
# Show when prefix has been pressed
plugin = prefix-highlight;
extraConfig = ''
# Also show when I'm in copy or sync mode
set -g @prefix_highlight_show_copy_mode 'on'
set -g @prefix_highlight_show_sync_mode 'on'
# Show prefix mode in status bar
set -g status-right '#{prefix_highlight} %a %Y-%m-%d %H:%M'
'';
}
];
2021-02-20 15:46:39 +01:00
extraConfig = ''
# Better vim mode
bind-key -T copy-mode-vi 'v' send -X begin-selection
${
lib.optionalString
(!hasGUI)
"bind-key -T copy-mode-vi 'y' send -X copy-selection"
}
# Block selection in vim mode
bind-key -Tcopy-mode-vi 'C-v' send -X begin-selection \; send -X rectangle-toggle
# Allow any application to send OSC52 escapes to set the clipboard
set -s set-clipboard on
2021-02-20 15:46:39 +01:00
'';
2021-02-20 15:34:33 +01:00
};
}