From c7c7b325d978b2d284cc51d2a28c65f4a03e2067 Mon Sep 17 00:00:00 2001 From: Mike Cugini Date: Thu, 10 Mar 2016 21:42:44 -0500 Subject: [PATCH] namespaced urxvt colors --- Xresources | 43 ++++++++++++++++++++++++++----------------- zshrc | 3 ++- 2 files changed, 28 insertions(+), 18 deletions(-) diff --git a/Xresources b/Xresources index f04e8d9..76ed9b1 100644 --- a/Xresources +++ b/Xresources @@ -1,3 +1,12 @@ +! DPI settings +Xft.dpi: 276 +Xft.autohint: 0 +Xft.lcdfilter: lcddefault +Xft.hintstyle: hintfull +Xft.hinting: 1 +Xft.antialias: 1 +Xft.rgba: rgb + ! urxvt config URxvt.scrollBar: False !URxvt.font: xft:Source Code Pro:size=10 @@ -10,38 +19,38 @@ URxvt.keysym.M-C-c: perl:clipboard:paste_escaped ! terminal colours URxvt.foreground:#a0a0a0 -*background:#1b1d1e +URxvt.background:#1b1d1e !molokai inspired colors !!black -*color0: #1b1d1e -*color8: #505354 +URxvt.color0: #1b1d1e +URxvt.color8: #505354 !red -*color1: #f92672 -*color9: #ff5995 +URxvt.color1: #f92672 +URxvt.color9: #ff5995 !green -*color2: #82b414 -*color10: #b6e354 +URxvt.color2: #82b414 +URxvt.color10: #b6e354 !yellow -*color3: #fd971f -*color11: #feed6c +URxvt.color3: #fd971f +URxvt.color11: #feed6c !blue -*color4: #56c2d6 -*color12: #8cedff +URxvt.color4: #56c2d6 +URxvt.color12: #8cedff !magenta -*color5: #8c54fe -*color13: #9e6ffe +URxvt.color5: #8c54fe +URxvt.color13: #9e6ffe !cyan -*color6: #465457 -*color14: #899ca1 +URxvt.color6: #465457 +URxvt.color14: #899ca1 !white -*color7: #ccccc6 -*color15: #f8f8f2aa +URxvt.color7: #ccccc6 +URxvt.color15: #f8f8f2aa diff --git a/zshrc b/zshrc index db79341..9dc358d 100644 --- a/zshrc +++ b/zshrc @@ -36,8 +36,9 @@ PROMPT=' > ' export EDITOR=vim +export TERM=rxvt-256color -alias ls='ls -G' +alias ls='ls -G --color' alias ll='ls -l' alias la='ls -a'