Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #ifndef DEFAULTS_H
18 #define DEFAULTS_H
20 extern char *download_path;
21 extern char *new_tab_url;
23 extern int autosave;
24 extern int dont_wrap_pre;
25 extern int emojify_link;
26 extern int enable_colors;
27 extern int fill_column;
28 extern int fringe_ignore_offset;
29 extern int hide_pre_blocks;
30 extern int hide_pre_closing_line;
31 extern int hide_pre_context;
32 extern int max_killed_tabs;
33 extern int olivetti_mode;
34 extern int set_title;
35 extern int tab_bar_show;
37 extern struct vline fringe;
39 struct lineprefix {
40 const char *prfx1;
41 const char *prfx2;
42 };
43 extern struct lineprefix line_prefixes[];
45 struct line_face {
46 int prfx_pair, pair, trail_pair;
47 int prfx_bg, bg, trail_bg;
48 int prfx_fg, fg, trail_fg;
49 int prfx_attr, attr, trail_attr;
51 int prefix, text, trail;
52 };
53 extern struct line_face line_faces[];
55 struct tab_face {
56 int bg_attr, bg_bg, bg_fg;
57 int t_attr, t_bg, t_fg;
58 int c_attr, c_bg, c_fg;
60 int background, tab, current;
61 };
62 extern struct tab_face tab_face;
64 struct body_face {
65 int lbg, lfg;
66 int bg, fg;
67 int rbg, rfg;
69 int left, body, right;
70 };
71 extern struct body_face body_face;
73 struct download_face {
74 int bg, fg, attr;
75 int background;
76 };
77 extern struct download_face download_face;
79 struct modeline_face {
80 int bg, fg, attr;
81 int background;
82 };
83 extern struct modeline_face modeline_face;
85 struct minibuffer_face {
86 int bg, fg, attr;
87 int background;
88 };
89 extern struct minibuffer_face minibuffer_face;
91 #endif