1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 03:21:10 +01:00
Files
niveum/dot/urxvt.nix

25 lines
659 B
Nix
Raw Normal View History

2019-03-06 01:01:27 +01:00
{ config, pkgs }:
2019-04-14 21:27:56 +02:00
let theme = import <dot/theme.nix>;
in
{
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-04-14 21:27:56 +02:00
perl-ext = "default,url-select";
"url-select.launcher" = "/usr/bin/env chromium";
"url-select.underline" = true;
"colorUL" = theme.colorScheme.blue.light;
"perl-lib" = "${pkgs.urxvt_perls}/lib/urxvt/perl";
2019-04-13 22:28:22 +02:00
urlLauncher = "/usr/bin/env chromium";
fading = 20;
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;
};
}