fix readline calculation bug with escape sequence in colored mode
[rainbowstream.git] / rainbowstream / colorset / config
... / ...
CommitLineData
1{
2 // After 120 minutes, the stream will automatically hangup
3 "HEARTBEAT_TIMEOUT" : 120,
4 // Image on term
5 "IMAGE_ON_TERM" : false,
6 // Themes
7 "THEME" : "monokai",
8 // Ascii Art
9 "ASCII_ART" : true,
10 // Hide promt when receive a tweet
11 "HIDE_PROMPT" : true,
12 // Prefix
13 "PREFIX" : "",
14 // 'search': max search record
15 "SEARCH_MAX_RECORD" : 5,
16 // 'home': default number of home's tweets
17 "HOME_TWEET_NUM" : 5,
18 // 'allrt': default number of retweets
19 "RETWEETS_SHOW_NUM" : 5,
20 // 'conversation': max tweet in a thread
21 "CONVERSATION_MAX" : 30,
22 // 'quote' format
23 "QUOTE_FORMAT" : "#comment RT #owner: #tweet",
24 // 'inbox','sent': default number of direct message
25 "MESSAGES_DISPLAY" : 5,
26 // 'trend': max trending topics
27 "TREND_MAX" : 10,
28 // List home timeline max
29 "LIST_MAX" : 5,
30 // 'switch': Filter and Ignore list ex: ['@fat','@mdo']
31 "ONLY_LIST" : [],
32 "IGNORE_LIST" : [],
33 // Autocomplete history file name
34 "HISTORY_FILENAME" : "completer.hist",
35 // Image config
36 "IMAGE_SHIFT" : 2,
37 "IMAGE_MAX_HEIGHT" : 90,
38 // Stream config
39 "USER_DOMAIN" : "userstream.twitter.com",
40 "PUBLIC_DOMAIN" : "stream.twitter.com",
41 "SITE_DOMAIN" : "sitestream.twitter.com",
42 // Format
43 "FORMAT": {
44 "TWEET": {
45 "CLOCK_FORMAT" : "%Y/%m/%d %H:%M:%S",
46 "DISPLAY" : "\n #name #nick #clock \n Retweets:#rt_count Favorites:#fa_count id:#id #fav\n #tweet"
47 },
48 "MESSAGE": {
49 "CLOCK_FORMAT" : "%Y/%m/%d %H:%M:%S",
50 "DISPLAY" : "\n #sender_name #sender_nick #to #recipient_name #recipient_nick :\n #clock message_id:#id\n #message"
51 }
52 }
53}