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