1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/dot/urxvt.nix
Kierán Meinhardt 1f5460d4ca Fix catulli timezone
2019-01-30 18:16:41 +01:00

21 lines
483 B
Nix

{ 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,atcher";
urlLauncher = "opera";
"matcher.button" = 3;
fading = 50;
iso14755 = false;
urgentOnBell = true;
reverseVideo = false;
};
}