nix/home/file/tmux/module/Copy.nix

18 lines
397 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
...
}: let
fg = config.module.style.color.fg.dark;
2024-11-04 04:37:29 +03:00
selection = config.module.style.color.selection;
in {
text = ''
setw -g mode-keys vi
bind -n M-v copy-mode
bind -n M-p choose-buffer;
bind -T copy-mode-vi v send -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
2024-04-30 20:35:45 +03:00
2024-11-04 04:37:29 +03:00
set -g mode-style "fg=#${fg} bg=#${selection} bold"
'';
2024-04-30 20:35:45 +03:00
}