2019-03-06 01:01:27 +01:00
|
|
|
{ config, pkgs }:
|
2018-12-30 14:34:39 +01:00
|
|
|
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 = {
|
2019-03-06 01:01:27 +01:00
|
|
|
perl-ext-common = "default,clipboard,url-select,matcher";
|
2019-03-14 14:29:04 +01:00
|
|
|
urlLauncher = "chromium";
|
2018-12-30 14:34:39 +01:00
|
|
|
fading = 50;
|
2019-01-30 17:37:05 +01:00
|
|
|
iso14755 = false;
|
2019-01-02 02:20:32 +01:00
|
|
|
urgentOnBell = true;
|
2019-01-30 18:16:41 +01:00
|
|
|
reverseVideo = false;
|
2018-12-30 14:34:39 +01:00
|
|
|
};
|
|
|
|
|
}
|