-
Notifications
You must be signed in to change notification settings - Fork 31
/
config.h
81 lines (69 loc) · 2.27 KB
/
config.h
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
/*
* fontnames-array takes two fonts, first one
* it treats as a proportional-width font and uses
* everywhere possible and as a main UI font, while
* the second font it treats as a fixed-width font,
* changeable to any text window by executing `Font`
* from tag window.
*
* Note: `Font` can also be executed
* with arguments with any `fontsrv -p .` approved
* fonts, thus allowing you to experiment with font
* sizes and whether you want anti-aliasing or not.
*/
char *fontnames[2] = {
"/lib/font/bit/profont/profont-12.font",
"/lib/font/bit/mntcarlo/mntcarlo.font"
};
/*
* globalautoindent tries to guess where to
* indent by the context of the previous line.
*
* comes highly suggested.
*/
int globalautoindent = TRUE;
/*
* swapping scroll buttons makes B1 scroll down
* instead of up and B2 up instead of down
*/
int swapscrollbuttons = FALSE;
/*
* bartflag triggers quote unquote experimental
* mode, in which instead of mouse following focus
* from window to window etc. it in fact, does not.
*
* comes highly suggested.
*/
int bartflag = TRUE;
/*
* colors-constants. now let me take a minute to explain
* them. C_TAGBG/FG/HLBG/HLFG are respectively your tag
* windows background, foreground, highlighted back- and
* foreground color. The same exact applies to C_TXT*-
* variants of the same constant just in this case it handles
* the colorscheme of the text window.
*
* C_WINBUTTON is the button which you adjust your columns
* position with. C_COLBUTTON represents a separate text
* windows button. C_TMPBUTTON is the so-called "dirty"
* or "unclean" -marker aka notifying the file as modified put
* in the middle of C_COLBUTTON. C_SCROLLBG is plain and simple
* your scrollbars background color.
*
* the last two defines are for defining the color of the specific
* buttons highlight background.
*/
#define C_TAGBG 0xFFFFFFFF
#define C_TAGFG 0x000000FF
#define C_TAGHLBG 0x999999FF
#define C_TAGHLFG 0x000000FF
#define C_TXTBG 0xFFFFFFFF
#define C_TXTFG 0x000000FF
#define C_TXTHLBG 0x999999FF
#define C_TXTHLFG 0x000000FF
#define C_WINBUTTON 0x4d4d4dFF
#define C_COLBUTTON 0x55aaaaFF
#define C_TMPBUTTON 0x55aaaaFF
#define C_SCROLLBG 0x999999FF
#define C_BUTTON2HL 0x55aaaaFF
#define C_BUTTON3HL 0x55aaaaFF