Last active
March 24, 2017 14:18
-
-
Save andersonfernandes/9430c4b119e3a330be9c3e7370e60171 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
!------------------------------------------------------------------------------- | |
! Xft settings | |
!------------------------------------------------------------------------------- | |
Xft.dpi: 96 | |
Xft.antialias: false | |
Xft.rgba: rgb | |
Xft.hinting: true | |
Xft.hintstyle: hintslight | |
!------------------------------------------------------------------------------- | |
! URxvt settings | |
! Colours lifted from Solarized (http://ethanschoonover.com/solarized) | |
! More info at: | |
! http://pod.tst.eu/http://cvs.schmorp.de/rxvt-unicode/doc/rxvt.1.pod | |
!------------------------------------------------------------------------------- | |
URxvt.depth: 32 | |
URxvt.geometry: 90x30 | |
URxvt.transparent: false | |
URxvt.fading: 0 | |
! URxvt.urgentOnBell: true | |
! URxvt.visualBell: true | |
URxvt.loginShell: true | |
URxvt.saveLines: 50 | |
URxvt.internalBorder: 3 | |
URxvt.lineSpace: 0 | |
! Fonts | |
URxvt.allow_bold: false | |
/* URxvt.font: -*-terminus-medium-r-normal-*-12-120-72-72-c-60-iso8859-1 */ | |
URxvt*font: xft:Monospace:pixelsize=14 | |
URxvt*boldFont: xft:Monospace:pixelsize=14 | |
! Fix font space | |
URxvt*letterSpace: -1 | |
! Scrollbar | |
URxvt.scrollStyle: rxvt | |
URxvt.scrollBar: false | |
! Perl extensions | |
URxvt.perl-ext-common: default,matcher | |
URxvt.matcher.button: 1 | |
URxvt.urlLauncher: firefox | |
! Cursor | |
URxvt.cursorBlink: true | |
URxvt.cursorColor: #657b83 | |
URxvt.cursorUnderline: false | |
! Pointer | |
URxvt.pointerBlank: true | |
*fadeColor: #002b36 | |
*cursorColor: #93a1a1 | |
*pointerColorBackground: #586e75 | |
*pointerColorForeground: #93a1a1 | |
! hard contrast: *background: #1d2021 | |
*background: #282828 | |
! soft contrast: *background: #32302f | |
*foreground: #ebdbb2 | |
! Black + DarkGrey | |
*color0: #282828 | |
*color8: #928374 | |
! DarkRed + Red | |
*color1: #cc241d | |
*color9: #fb4934 | |
! DarkGreen + Green | |
*color2: #98971a | |
*color10: #b8bb26 | |
! DarkYellow + Yellow | |
*color3: #d79921 | |
*color11: #fabd2f | |
! DarkBlue + Blue | |
*color4: #458588 | |
*color12: #83a598 | |
! DarkMagenta + Magenta | |
*color5: #b16286 | |
*color13: #d3869b | |
! DarkCyan + Cyan | |
*color6: #689d6a | |
*color14: #8ec07c | |
! LightGrey + White | |
*color7: #a89984 | |
*color15: #ebdbb2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment