all repos — acme @ main

fork of the acme editor from plan9port - keybinds, tweaks, config.h, etc

config.def.h (raw)

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
/******************
 * acme9k config *
 ******************/

/**********
 * colors *
 **********/

/* when column is empty */
#define COLOR_EMPTY 0x222222FF

/* tag & body colors: bg, hilight, border, text, hilighted text */
#define COLOR_TAG_BG 0x000000FF
#define COLOR_TAG_HI 0x1F9b92FF
#define COLOR_TAG_BD 0x797979FF
#define COLOR_TAG_TX 0xC9C9C9FF
#define COLOR_TAG_HT 0x000000FF

#define COLOR_BODY_BG 0x000F19FF
#define COLOR_BODY_HI 0x1F9B92FF
#define COLOR_BODY_BD 0x797979FF
#define COLOR_BODY_TX 0x93A1A1FF
#define COLOR_BODY_HT 0x000000FF

/* button colors: dirty file (mod) indicator and column handles */

#define COLOR_BTN_MD 0x1F9B92FF
#define COLOR_BTN_CO 0x002B36FF

/* button 2 and 3 selection colors */

#define COLOR_B2_HI 0x797979FF
#define COLOR_B3_HI 0x002B36FF

/*********
 * fonts *
 *********/

/* can use either x fonts via fontsrv or p9p fonts */

#define PRIMARY_FONT "/mnt/font/SauceCodeProNerdFontComplete-Regular/9a/font"
#define SECONDARY_FONT "/lib/font/bit/lucm/unicode.9.font"


/********
 * misc *
 ********/

/* 0 = focus follows mouse, 1 = click to focus; -b flag will invert this */

#define CLICKFOCUS_DEFAULT 0

/* 0 = literal tabs, 1 = tabs to spaces; -i flag will invert this */

#define TABSTOSPACES_DEFAULT 0

/* 0 = no auto indent, 1 = autoindent; -a flag will invert this */

#define AUTOINDENT_DEFAULT 0