1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00
Files
niveum/dot/urxvt.nix

16 lines
366 B
Nix
Raw Normal View History

{ pkgs }:
with import ../theme.nix;
{
enable = true;
package = pkgs.rxvt_unicode-with-plugins;
keybindings = {
"Shift-Control-C" = "eval:selection_to_clipboard";
"Shift-Control-V" = "eval:paste_clipboard";
};
scroll.bar.enable = false;
extraConfig = {
perl-ext-common = "default,clipboard,url-select,keyboard-select";
fading = 50;
};
}