Created
October 13, 2014 18:25
-
-
Save manpages/b4ce269edcb941f3f761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! 256 COLOURS | |
*termName: xterm-256color | |
! WHY DO WE EVEN NEED THIS? | |
URxvt.geometry: 155x56 | |
! DISABLE ISO14755 | |
URxvt.iso14755: false | |
! UBUNTU MONO | |
URxvt.letterSpace: -1 | |
URxvt.font: xft:Ubuntu Mono:pixelsize=12 | |
!URxvt.boldFont: xft:Ubuntu Mono:pixelsize=12 | |
! Functions | |
URxvt.saveLines: 10000 | |
URxvt.secondaryScroll: true | |
URxvt.scrollBar: false | |
URxvt.scrollTtyKeypress: true | |
URxvt.scrollWithBuffer: true | |
#define base00 #3B3228 | |
#define base01 #534636 | |
#define base02 #645240 | |
#define base03 #7e705a | |
#define base04 #b8afad | |
#define base05 #d0c8c6 | |
#define base06 #e9e1dd | |
#define base07 #f5eeeb | |
#define base08 #cb6077 | |
#define base09 #d28b71 | |
#define base0A #f4bc87 | |
#define base0B #beb55b | |
#define base0C #7bbda4 | |
#define base0D #8ab3b5 | |
#define base0E #a89bb9 | |
#define base0F #bb9584 | |
*foreground: base05 | |
*background: base00 | |
*cursorColor: base05 | |
*color0: base00 | |
*color1: base08 | |
*color2: base0B | |
*color3: base0A | |
*color4: base0D | |
*color5: base0E | |
*color6: base0C | |
*color7: base05 | |
*color8: base03 | |
*color9: base09 | |
*color10: base01 | |
*color11: base02 | |
*color12: base04 | |
*color13: base06 | |
*color14: base0F | |
*color15: base07 | |
! PLUGINS | |
URxvt.perl-ext-common: default,matcher,searchable-scrollback,url-select | |
URxvt*urlLauncher: /usr/bin/firefox | |
URxvt.keysym.M-u: perl:url-select:select_next | |
URxvt.url-select.launcher: /usr/bin/firefox -new-tab | |
URxvt.url-select.underline: true | |
! | |
!!! SOME REAL TOUGH ARCANE KNOWLEDGE PAST THIS POINT | |
! | |
! MAKE CTRL-DIRECTIONS PRODUCE COOL CONTROL SEQUENCES | |
URxvt.keysym.Control-Up: \033[1;5A | |
URxvt.keysym.Control-Down: \033[1;5B | |
URxvt.keysym.Control-Left: \033[1;5D | |
URxvt.keysym.Control-Right: \033[1;5C | |
URxvt.keysym.M-k: \033[1;5A | |
URxvt.keysym.M-j: \033[1;5B | |
URxvt.keysym.M-h: \033[1;5D | |
URxvt.keysym.M-l: \033[1;5C | |
! Control-l clears the screen | |
URxvt.keysym.Control-l: echo -ne '\\033c'\n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment