-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.Xresources
87 lines (63 loc) · 1.31 KB
/
.Xresources
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
! Colors {{{
! gruvbox (https://github.com/morhetz/gruvbox)
*color0: #282828
*color1: #cc241d
*color2: #98971a
*color3: #d79921
*color4: #458588
*color5: #b16286
*color6: #689d6a
*color7: #a89984
*color8: #928374
*color9: #fb4934
*color10: #b8bb26
*color11: #fabd2f
*color12: #83a598
*color13: #d3869b
*color14: #8ec07c
*color15: #ebdbb2
*background: #282828
*foreground: #ebdbb2
! }}}
! XTerm {{{
! General {{{
XTerm.termName: xterm-256color
! unicode
XTerm*locale: false
XTerm*utf8: true
! sixel support
XTerm*decTerminalID: vt340
XTerm*numColorRegisters: 256
! }}}
! Fonts {{{
XTerm*faceName: Fira Code
! FIXME: This should be adjusted per-host
XTerm*faceSize: 11
! }}}
! Window {{{
XTerm*geometry: 132x43
XTerm.borderWidth: 0
! }}}
! Scrollback {{{
XTerm*alternateScroll: true
XTerm*fastScroll: true
XTerm*scrollKey: true
XTerm*scrollTtyOutput: false
XTerm*saveLines: 10000
! }}}
! Bell {{{
XTerm*bellIsUrgent: true
XTerm*visualBell: false
! }}}
! Keys {{{
XTerm*backarrowKey: false
XTerm*metaSendsEscape: true
XTerm.ttyModes: erase ^?
XTerm.VT100.translations: #override \
Ctrl Shift <Key>C: copy-selection(CLIPBOARD) \n\
Ctrl Shift <Key>H: set-altscreen(toggle) \n\
Ctrl Shift <Key>S: secure() \n\
Ctrl Shift <Key>V: insert-selection(CLIPBOARD)
! }}}
! }}}
! vim:set et sw=2 ts=8 fdm=marker: