]> Sergey Matveev's repositories - dotfiles.git/blob - irssi/.irssi/config.skel
Two more chats
[dotfiles.git] / irssi / .irssi / config.skel
1 aliases = { wc = "window close"; qmsg = "quote privmsg $0 :$1-"; };
2 settings = {
3   "fe-text" = {
4     actlist_sort = "refnum";
5     paste_join_multiline = "no";
6     paste_detect_time = "0";
7     paste_use_bracketed_mode = "yes";
8   };
9   "fe-common/core" = {
10     autolog = "yes";
11     beep_msg_level = "MSGS NOTICES INVITES DCC DCCMSGS HILIGHT PUBLIC";
12     autolog_path = "~/secure/irclogs/$tag/$0.log";
13     beep_when_window_active = "yes";
14     hilight_nick_matches_everywhere = "yes";
15   };
16   core = {
17     real_name = "Sergey Matveev";
18     user_name = "stargrave";
19     nick = "stargrave";
20     timestamp_format = "%H:%M:%S";
21   };
22 };
23 logs = { };
24 servers = (
25   {
26     address = "::1";
27     chatnet = "matterircd";
28     port = "6666";
29     use_tls = "no";
30     tls_verify = "no";
31     autoconnect = "yes";
32   },
33   {
34     address = "irc.libera.chat";
35     chatnet = "LiberaChat";
36     port = "6697";
37     use_tls = "yes";
38     tls_verify = "yes";
39     autoconnect = "yes";
40   }
41 );
42 chatnets = {
43   matterircd = {
44     type = "IRC";
45     autosendcmd = "/qmsg mattermost LOGIN stargrave PASSWORD ; wait 5000";
46   };
47   LiberaChat = {
48     type = "IRC";
49     sasl_mechanism = "plain";
50     sasl_username = "stargrave";
51     sasl_password = "PASSWORD";
52   };
53 };
54 hilights = ( { text = "stargrave"; nick = "yes"; word = "yes"; } );
55 keyboard = (
56   { key = "^Y"; id = "command"; data = "SCROLLBACK GOTO -2"; },
57   { key = "^E"; id = "command"; data = "SCROLLBACK GOTO +2"; },
58   { key = "^L"; id = "command"; data = "WINDOW LAST"; }
59 );
60 channels = (
61   { name = "#freebsd"; chatnet = "LiberaChat"; autojoin = "yes"; },
62   { name = "#gopherproject"; chatnet = "LiberaChat"; autojoin = "yes"; },
63   { name = "#nethack"; chatnet = "LiberaChat"; autojoin = "yes"; },
64   { name = "#netsurf"; chatnet = "LiberaChat"; autojoin = "yes"; },
65   { name = "#redo"; chatnet = "LiberaChat"; autojoin = "yes"; }
66 );
67 ignores = ( { level = "NO_ACT ALL"; channels = ( "#freebsd" ); } );