NeoMutt  2025-12-11-800-ga0ee0f
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c
Go to the documentation of this file.
1
22
28
29#include "config.h"
30#include <stdbool.h>
31#include <stddef.h>
32#include "config/lib.h"
33
37struct ConfigDef ColorVars[] = {
38 // clang-format off
39 { "color_directcolor", DT_BOOL|D_ON_STARTUP, false, 0, NULL,
40 "Use 24bit colors (aka truecolor aka directcolor)"
41 },
42
43 { NULL },
44 // clang-format on
45};
struct ConfigDef ColorVars[]
Config definitions for the Color module.
Definition config.c:37
Convenience wrapper for the config headers.
@ DT_BOOL
boolean option
Definition types.h:32
#define D_ON_STARTUP
May only be set at startup.
Definition types.h:79