blob: fa2eb7a4d9e54804b89c77f76d91b78998b34080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* This is part of `gramscii`` -- see COPYING for details */
#ifndef __LOCAL_CONFIG_H__
#define __LOCAL_CONFIG_H__
/* Config options */
/** MARKERS -- the first character is the default one **/
/* markers for horizontal lines */
static char hlines[] = {"-~=#*@._ "};
/* markers for vertical lines */
static char vlines[] = {"|H#*@:;i "};
/* markers for corners */
static char corners[] = {"+'H#*@.\"`"};
/* markers for arrow start points */
static char st_marks[] = {"+o-|<>^v*"};
/* markers for arrow endpoints */
static char end_marks[] = {">+o-|<^v*"};
/** LONG_STEP (movements through uppercase HJKL) **/
#define LONG_STEP 5
#endif
|