systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
Log | Files | Refs | README | LICENSE

config.h (556B)


      1 #define VERSION "1.0"
      2 #define TTY_COLOR_HIGHLIGHT TTY_COLOR_YELLOW
      3 
      4 #define SCORE_GAP_LEADING -0.005
      5 #define SCORE_GAP_TRAILING -0.005
      6 #define SCORE_GAP_INNER -0.01
      7 #define SCORE_MATCH_CONSECUTIVE 1.0
      8 #define SCORE_MATCH_SLASH 0.9
      9 #define SCORE_MATCH_WORD 0.8
     10 #define SCORE_MATCH_CAPITAL 0.7
     11 #define SCORE_MATCH_DOT 0.6
     12 
     13 /* Time (in ms) to wait for additional bytes of an escape sequence */
     14 #define KEYTIMEOUT 25
     15 
     16 #define DEFAULT_TTY "/dev/tty"
     17 #define DEFAULT_PROMPT "> "
     18 #define DEFAULT_NUM_LINES 10
     19 #define DEFAULT_WORKERS 0
     20 #define DEFAULT_SHOW_INFO 0