blob: c809b237255ad0f7de1166a5eea4f9bbda8a8387 (
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
! Use Xterm with 256 beautiful colors
xterm*termName: xterm-256color
! Use a nice truetype font and size by default...
xterm*faceName: Ubuntu Mono
xterm*faceSize: 16
! VT font menu: unreadable
xterm*facesize1: 8
! VT font menu : tiny
xterm*facesize2: 10
! VT font menu: small
xterm*facesize3: 12
! VT font menu: medium
xterm*facesize4: 18
! VT font menu: large
xterm*facesize5: 22
! VT font menu: huge
xterm*facesize6: 24
! Every shell is a login shell by default (for inclusion of all necessary environment variables)
xterm*loginshell: true
! A lot of scrollback
xterm*savelines: 16384
! right hand side scrollbar...
! xterm*rightScrollBar: true
! xterm*ScrollBar: true
! stop output to terminal from jumping down to bottom of scroll again
xterm*scrollTtyOutput: false
! ## select text ##
xterm*highlightSelection: true
! remove trailing spaces
xterm*trimSelection: true
! selection goes to CLIPBOARD selection
! xterm*selectToClipboard: true
! double-click to select whole URLs :D
xterm*charClass: 33:48,36-47:48,58-59:48,61:48,63-64:48,95:48,126:48
! ## keybindings ##
! ctrl -/+ zooms out/in
! ctrl shift c/v = copy/paste
! selection with mouse left click goes right to clipboard
xterm*translations: #override \n\
Ctrl <Key>-: smaller-vt-font() \n\
Ctrl <Key>+: larger-vt-font() \n\
Ctrl <Key>0: set-vt-font(d) \n\
Ctrl Shift <Key>C: copy-selection(CLIPBOARD) \n\
Ctrl Shift <Key>V: insert-selection(CLIPBOARD) \n\
<Btn1Up>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0)
! Alt key becomes the ESC key >:)
xterm*metaSendsEscape: true
! Base16 Solarized Dark
! Scheme: Ethan Schoonover (http://ethanschoonover.com/solarized)
!#define S_base03 #002b36
!#define S_base02 #073642
!#define S_base01 #586e75
!#define S_base00 #657b83
!#define S_base0 #839496
!#define S_base1 #93a1a1
!#define S_base2 #eee8d5
!#define S_base3 #fdf6e3
!
!*background: S_base03
!*foreground: S_base0
!*fadeColor: S_base03
!*cursorColor: S_base1
!*pointerColorBackground:S_base01
!*pointerColorForeground:S_base1
!
!#define S_yellow #b58900
!#define S_orange #cb4b16
!#define S_red #dc322f
!#define S_magenta #d33682
!#define S_violet #6c71c4
!#define S_blue #268bd2
!#define S_cyan #2aa198
!#define S_green #859900
!
!!! black dark/light
!*color0: S_base02
!*color8: S_base03
!
!!! red dark/light
!*color1: S_red
!*color9: S_orange
!
!!! green dark/light
!*color2: S_green
!*color10: S_base01
!
!!! yellow dark/light
!*color3: S_yellow
!*color11: S_base00
!
!!! blue dark/light
!*color4: S_blue
!*color12: S_base0
!
!!! magenta dark/light
!*color5: S_magenta
!*color13: S_violet
!
!!! cyan dark/light
!*color6: S_cyan
!*color14: S_base1
!
!!! white dark/light
!*color7: S_base2
!*color15: S_base3
#define nord0 #2E3440
#define nord1 #3B4252
#define nord2 #434C5E
#define nord3 #4C566A
#define nord4 #D8DEE9
#define nord5 #E5E9F0
#define nord6 #ECEFF4
#define nord7 #8FBCBB
#define nord8 #88C0D0
#define nord9 #81A1C1
#define nord10 #5E81AC
#define nord11 #BF616A
#define nord12 #D08770
#define nord13 #EBCB8B
#define nord14 #A3BE8C
#define nord15 #B48EAD
*.foreground: nord4
*.background: nord0
*.cursorColor: nord4
*fading: 35
*fadeColor: nord3
*.color0: nord1
*.color1: nord11
*.color2: nord14
*.color3: nord13
*.color4: nord9
*.color5: nord15
*.color6: nord8
*.color7: nord5
*.color8: nord3
*.color9: nord11
*.color10: nord14
*.color11: nord13
*.color12: nord9
*.color13: nord15
*.color14: nord7
*.color15: nord6
|