From 1be4c30c5e1526484665c382d784e0de9fe9d8de Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Wed, 24 Jul 2019 12:34:29 +0100 Subject: add config.h --- config.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..d38488b --- /dev/null +++ b/config.h @@ -0,0 +1,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 -- cgit v1.2.3