-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathirssi_config
More file actions
57 lines (57 loc) · 1.58 KB
/
irssi_config
File metadata and controls
57 lines (57 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
settings = {
core = {
real_name = "David Kovacs";
user_name = "davs";
nick = "davs";
};
"fe-text" = { actlist_sort = "refnum"; };
"fe-common/core" = {
autolog_path = "/home/davs/.irssi/log/$tag/$0.log";
autolog = "yes";
};
};
ignores = ( { level = "JOINS PARTS QUITS MODES"; } );
servers = (
{
address = "chat.freenode.net";
chatnet = "fn";
port = "6697";
password = "$IRSSI_IRC_PASSWORD";
use_ssl = "yes";
ssl_verify = "no";
autoconnect = "yes";
},
{
address = "irc.mozilla.org";
chatnet = "mozilla";
port = "6697";
password = "$IRSSI_IRC_PASSWORD";
use_ssl = "yes";
ssl_verify = "no";
autoconnect = "yes";
},
);
chatnets = {
fn = {
type = "IRC";
nick = "davs";
autosendcmd = "/^msg NickServ IDENTIFY $IRSSI_IRC_PASSWORD;wait 2000;/window goto nickserv;/wc";
};
mozilla = {
type = "IRC";
nick = "davs";
autosendcmd = "/^msg NickServ IDENTIFY $IRSSI_IRC_PASSWORD;wait 2000;/window goto nickserv;/wc";
};
};
channels = (
{ name = "#arduino"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#ocaml"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#elixir-lang"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#go-nuts"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#elixir"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#vim"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#haskell-beginners"; chatnet = "fn"; autojoin = "yes"; },
{ name = "#rust-beginners"; chatnet = "mozilla"; autojoin = "yes"; },
{ name = "#rust"; chatnet = "mozilla"; autojoin = "yes"; },
);
logs = { };