From c96a147d8e0aa929896a8a345423714dc0a3844d Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 30 Nov 2015 01:42:03 +0100 Subject: Move all URxvt settings to their own config --- x11/.config/Xresources/URxvt.conf | 84 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 83 insertions(+), 1 deletion(-) (limited to 'x11/.config') diff --git a/x11/.config/Xresources/URxvt.conf b/x11/.config/Xresources/URxvt.conf index d8e2687..286ed4e 100644 --- a/x11/.config/Xresources/URxvt.conf +++ b/x11/.config/Xresources/URxvt.conf @@ -1,3 +1,85 @@ ! Instead of having the window manager add a border, add an internal ! border to Rxvt Unicode, for style! -urxvt.internalBorder: 15 +URxvt.internalBorder: 15 + +! Always start a login shell when URxvt starts. +URxvt.loginShell: true + +! Do not show a scrollbar. +URxvt.scrollBar: false + +! Save a lot of lines in the scrollback buffer. Possibly even the +! maximum. +URxvt.saveLines: 65535 + +! Make sure that the cursor doesn't blink. Even though it's the +! default, you can not be too careful. +URxvt.cursorBlink: false + +! Show the cursor as a horizontal bar (or underline) instead of a +! solid box. Too bad I can not use a vertical bar like in Emacs. +URxvt.cursorUnderline: true + +! Set the urgency WM hint when a bell character appears. +URxvt.urgentOnBell: true + +! Make sure that the termcap libraries know I am using a 256-color +! terminal emulator. +URxvt.termName: rxvt-256color + +! Make sure that no visual bell is used when a bell character appears. +! Again, this may be the default, but you can not be too careful. +URxvt.visualBell: false + +! URxvt seems to render letters much wider than, for example, Emacs by +! default. Fix it by setting the letterspace to a negative value. +URxvt.letterSpace: -1 + +! Enable the url-select plugin along with the default plugins. +URxvt.perl-ext-common: default,url-select + +! Use Conkeror to open URLs +URxvt.url-launcher: conkeror + +! Use an excellent font. +URxvt.font: xft:Fantasque Sans Mono-13:weight=medium +URxvt.boldFont: xft:Fantasque Sans Mono-13:weight=bold +URxvt.italicFont: xft:Fantasque Sans Mono-13:slant=italic + +! Attempt to find a visual with the given bit depth. +URxvt.depth: 32 + +!! url-select Settings +! Activate URL selection mode with M-u (Alt+u, Meta+u). Open the links +! with Conkeror and show an underline under every URL found. +URxvt.keysym.M-u: perl:url-select:select_next +URxvt.url-select.launcher: /usr/bin/conkeror +URxvt.url-select.underline: true + +!! Colors +URxvt.background: backgroundColor +URxvt.foreground: foregroundColor +! Black +URxvt.color0: bgdim +URxvt.color8: bgbright +! Red +URxvt.color1: fgred +URxvt.color9: #da9d9d +! Green +URxvt.color2: fggreen +URxvt.color10: #a9d39e +! Yellow +URxvt.color3: fgyellow +URxvt.color11: #c2ca9e +! Blue +URxvt.color4: fgblue +URxvt.color12: #a2b8d8 +! Magenta +URxvt.color5: fgmagenta +URxvt.color13: #d0a8da +! Cyan +URxvt.color6: fgcyan +URxvt.color14: #abdddd +! White +URxvt.color7: fgdim +URxvt.color15: fgbright -- cgit v1.2.3-54-g00ecf