mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 06:27:21 +01:00
use solarized color scheme in urxvt and vim
This commit is contained in:
136
Xdefaults
136
Xdefaults
@@ -1,68 +1,90 @@
|
||||
# transparency - true or false (default)
|
||||
# URxvt*transparent: true
|
||||
!-------------------------------------------------------------------------------
|
||||
! Xft settings
|
||||
!-------------------------------------------------------------------------------
|
||||
|
||||
# tint with any color; i.e., blue, red, tomato4, olivedrab2, etc.
|
||||
# some nice listings are at:
|
||||
# http://www.nisrv.com/drupal/?q=node/11
|
||||
# http://www.htmlgoodies.com/tutorials/colors/article.php/3478921
|
||||
# URxvt*tintColor: olivedrab2
|
||||
Xft.dpi: 96
|
||||
Xft.antialias: true
|
||||
Xft.rgba: rgb
|
||||
Xft.hinting: true
|
||||
Xft.hintstyle: hintslight
|
||||
|
||||
# shading - 0 to 99 darkens, 101 to 200 lightens.
|
||||
# Don't use with tintColor; just use a darker or lighter color instead.
|
||||
# URxvt*shading: 20
|
||||
!-------------------------------------------------------------------------------
|
||||
! 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
|
||||
!-------------------------------------------------------------------------------
|
||||
|
||||
# scrollback buffer lines - 65535 is max on most machines (64 is default)
|
||||
URxvt*saveLines: 12000
|
||||
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
|
||||
|
||||
# font color (default is black)
|
||||
URxvt*foreground: White
|
||||
|
||||
# background color (prior to tinting) (default is white)
|
||||
URxvt*background: Black
|
||||
|
||||
# Xft (X FreeType) with Bitstream, DejaVu, Liberation, or Terminus fonts:
|
||||
# Fedora/debian packages: libXft/libxft2
|
||||
# An anti-aliased font setup with Xft looks fantastic; it can be a bit choppy
|
||||
# on older systems. You can always turn off anti-aliasing (antialias=false) if
|
||||
# your terminal is sluggish. Use only ONE of the Xft pairs below:
|
||||
#
|
||||
# Xft: Bitstream fonts
|
||||
# Fedora/debian packages: bitstream-vera-sans-mono-fonts/ttf-bitstream-vera
|
||||
#URxvt*font: xft:Bitstream Vera Sans Mono:pixelsize=12:antialias=true:hinting=true
|
||||
#URxvt*boldFont: xft:Bitstream Vera Sans Mono:bold:pixelsize=12:alntialias=true:hinting=true
|
||||
#
|
||||
# Xft: DejaVu fonts
|
||||
# Fedora/debian packages: dejavu-sans-mono-fonts/ttf-dejavu
|
||||
#URxvt*font: xft:DejaVu Sans Mono:pixelsize=12:antialias=true:hinting=true
|
||||
#URxvt*boldFont: xft:DejaVu Sans Mono:bold:pixelsize=12:antialias=true:hinting=true
|
||||
#
|
||||
# Xft: Liberation fonts
|
||||
# Fedora/debian packages: liberation-mono-fonts/ttf-liberation
|
||||
#URxvt*font: xft:Liberation Mono:pixelsize=13:antialias=true:hinting=true
|
||||
#URxvt*boldFont: xft:Liberation Mono:bold:pixelsize=13:antialias=true:hinting=true
|
||||
#
|
||||
# Xft: Terminus fonts
|
||||
# Fedora/debian packages: terminus-fonts/xfonts-terminus
|
||||
! Fonts
|
||||
URxvt*font: xft:terminus:pixelsize=15
|
||||
URxvt*boldFont: xft:terminus:bold:pixelsize=15
|
||||
|
||||
# Traditional fonts - a more traditional font setup in lieu of xft
|
||||
#URxvt*font:-*-courier-medium-r-normal-*-14-*-*-*-*-*-iso8859-1
|
||||
#URxvt*boldFont:-*-courier-bold-r-normal-*-14-*-*-*-*-*-iso8859-1
|
||||
! Scrollbar
|
||||
URxvt.scrollStyle: rxvt
|
||||
URxvt.scrollBar: false
|
||||
|
||||
# Replace blue folder colors with a lighter shade for clarity. To
|
||||
# set colored folders and files within urxvt, xterm, and aterm, add
|
||||
# the following line to your ~/.bashrc ($HOME/.bashrc) file under
|
||||
# the heading "# User specific aliases and functions":
|
||||
# alias ls="ls -h --color=auto"
|
||||
URxvt*color4: RoyalBlue
|
||||
URxvt*color12: RoyalBlue
|
||||
! Perl extensions
|
||||
URxvt.perl-ext-common: default,matcher
|
||||
URxvt.matcher.button: 1
|
||||
URxvt.urlLauncher: firefox
|
||||
|
||||
# scrollbar - true (default) or false
|
||||
URxvt*scrollBar: false
|
||||
! Cursor
|
||||
URxvt.cursorBlink: true
|
||||
URxvt.cursorColor: #657b83
|
||||
URxvt.cursorUnderline: false
|
||||
|
||||
# scrollbar position - left=false (default) or right=true
|
||||
URxvt*scrollBar_right: false
|
||||
! Pointer
|
||||
URxvt.pointerBlank: true
|
||||
|
||||
# scrollbar style - rxvt (default), plain, next, or xterm
|
||||
URxvt*scrollstyle: rxvt
|
||||
!!Source http://github.com/altercation/solarized
|
||||
|
||||
*background: #002b36
|
||||
*foreground: #657b83
|
||||
!!*fading: 40
|
||||
*fadeColor: #002b36
|
||||
*cursorColor: #93a1a1
|
||||
*pointerColorBackground: #586e75
|
||||
*pointerColorForeground: #93a1a1
|
||||
|
||||
!! black dark/light
|
||||
*color0: #073642
|
||||
*color8: #002b36
|
||||
|
||||
!! red dark/light
|
||||
*color1: #dc322f
|
||||
*color9: #cb4b16
|
||||
|
||||
!! green dark/light
|
||||
*color2: #859900
|
||||
*color10: #586e75
|
||||
|
||||
!! yellow dark/light
|
||||
*color3: #b58900
|
||||
*color11: #657b83
|
||||
|
||||
!! blue dark/light
|
||||
*color4: #268bd2
|
||||
*color12: #839496
|
||||
|
||||
!! magenta dark/light
|
||||
*color5: #d33682
|
||||
*color13: #6c71c4
|
||||
|
||||
!! cyan dark/light
|
||||
*color6: #2aa198
|
||||
*color14: #93a1a1
|
||||
|
||||
!! white dark/light
|
||||
*color7: #eee8d5
|
||||
*color15: #fdf6e3
|
||||
|
||||
Reference in New Issue
Block a user