aboutsummaryrefslogtreecommitdiffstats
path: root/urxvt/.config/X11/Xresources.d/URxvt.conf
blob: f896e7d9b58a1bf9f73580bc8e75506c4ad01ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
dnl URxvt colors
define(`URxvt_background', `bgdefault')dnl
define(`URxvt_foreground', `fgdefault')dnl
define(`URXvt_cursorColor', `fgblue')dnl
dnl BG Black
define(`URxvt_color0', `bgdim')dnl
dnl BG Red
define(`URxvt_color1', `fgred')dnl
dnl BG Green
define(`URxvt_color2', `fggreen')dnl
dnl BG Yellow
define(`URxvt_color3', `fgyellow')dnl
dnl BG Blue
define(`URxvt_color4', `fgblue')dnl
dnl BG Magenta
define(`URxvt_color5', `fgmagenta')dnl
dnl BG Cyan
define(`URxvt_color6', `fgcyan')dnl
dnl BG White
define(`URxvt_color7', `fgdim')dnl
dnl FG Black
define(`URxvt_color8', `bgbright')dnl
dnl FG Red
define(`URxvt_color9', ``#'da9d9d')dnl
dnl FG Green
define(`URxvt_color10', ``#'a9d39e')dnl
dnl FG Yellow
define(`URxvt_color11', ``#'c2ca9e')dnl
dnl FG Blue
define(`URxvt_color12', ``#'a2b8d8')dnl
dnl FG Magenta
define(`URxvt_color13', ``#'d0a8da')dnl
dnl FG Cyan
define(`URxvt_color14', ``#'abdddd')dnl
dnl FG White
define(`URxvt_color15', `fgbright')dnl
dnl Selection highlight
define(`URxvt_highlightColor', `bgblue')dnl
define(`URxvt_highlightTextColor', `fgdefault')dnl
dnl
! Instead of having the window manager add a border, add an internal
! border to Rxvt Unicode, for style!
URxvt.internalBorder: 15

! Do not start a login shell when URxvt starts.
URxvt.loginShell: false

! 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 does not blink. Even though it is 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: -2

! Enable the url-select plugin along with the default plugins. Also
! enable the selection-to-clipboard plugin so that the primary
! selection gets added to the clipboard as well.
URxvt.perl-ext-common: default,url-select,selection-to-clipboard

! Use Conkeror to open URLs
URxvt.url-launcher: conkeror

! Use an excellent font.
URxvt.font: xft:Fantasque Sans Mono-15:weight=medium
URxvt.boldFont: xft:Fantasque Sans Mono-15:weight=bold
URxvt.italicFont: xft:Fantasque Sans Mono-15:weight=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: url-select:select_next
URxvt.url-select.launcher: /usr/bin/conkeror
URxvt.url-select.underline: true

!! Colors
URxvt.background: URxvt_background
URxvt.foreground: URxvt_foreground
URxvt.color0: URxvt_color0
URxvt.color1: URxvt_color1
URxvt.color2: URxvt_color2
URxvt.color3: URxvt_color3
URxvt.color4: URxvt_color4
URxvt.color5: URxvt_color5
URxvt.color6: URxvt_color6
URxvt.color7: URxvt_color7
URxvt.color8: URxvt_color8
URxvt.color9: URxvt_color9
URxvt.color10: URxvt_color10
URxvt.color11: URxvt_color11
URxvt.color12: URxvt_color12
URxvt.color13: URxvt_color13
URxvt.color14: URxvt_color14
URxvt.color15: URxvt_color15
URxvt.highlightColor: URxvt_highlightColor
URxvt.highlightTextColor: URxvt_highlightTextColor
URxvt.cursorColor: URXvt_cursorColor