tastytea
d1e7ea346a
C-BackSpace is mapped to M-BackSpace in my terminal, because it sends
C-H otherwise. But it really is mapped to ESC-DEL. It gets interpreted
differently. 🥴
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
! -*- mode: conf-xdefaults; -*-
|
|
! urxvt configuration.
|
|
|
|
! Disable printing.
|
|
URxvt.print-pipe: "cat > /dev/null"
|
|
URxvt*font: xft:Source Code Pro:style=Regular:size=12,xft:Noto Color Emoji
|
|
URxvt*letterSpace: -1
|
|
URxvt.scrollBar: false
|
|
URxvt.iso14755: false
|
|
URxvt*visualBell : true
|
|
|
|
! Keys
|
|
URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
|
|
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
|
|
URxvt.keysym.C-BackSpace: \033\177
|
|
URxvt.keysym.C-semicolon: \033\073
|
|
|
|
! Colors
|
|
URxvt*background: #111111
|
|
URxvt*foreground: #D3D7CF
|
|
! black
|
|
URxvt*color0: #111111
|
|
URxvt*color8: #555555
|
|
! red
|
|
URxvt*color1: #AA0000
|
|
URxvt*color9: #FF5555
|
|
! green
|
|
URxvt*color2: #00AA00
|
|
URxvt*color10: #55FF55
|
|
! yellow
|
|
URxvt*color3: #AA5500
|
|
URxvt*color11: #FFFF55
|
|
! blue
|
|
URxvt*color4: #0066FF
|
|
URxvt*color12: #6666FF
|
|
! purple
|
|
URxvt*color5: #AA00AA
|
|
URxvt*color13: #FF55FF
|
|
! cyan
|
|
URxvt*color6: #00AAAA
|
|
URxvt*color14: #55FFFF
|
|
! white
|
|
URxvt*color7: #AAAAAA
|
|
URxvt*color15: #FFFFFF
|
|
|
|
! Perl extensions
|
|
URxvt.perl-ext-common: default,matcher
|
|
URxvt.url-launcher: xdg-open
|
|
|
|
/* vim: set ts=4 sw=4 et tw=80 ft=xdefaults: */
|