summaryrefslogtreecommitdiff
path: root/config
blob: 5d84c963ba57efc79437c60169edf43635f68f18 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
servers = (
  { address = "irc.funet.fi"; chatnet = IRCNet; port = 6667; },
  { address = "irc.efnet.net"; chatnet = EFNet; port = 6667; },
  { address = "irc.undernet.net"; chatnet = Undernet; port = 6667; },
  { address = "irc.dal.net"; chatnet = DALNet; port = 6667; },
  { address = "irc.openprojects.net"; chatnet = OPN; port = 6667; },
  { address = "irc.ptlink.net"; chatnet = PTlink; port = 6667; }
);

ircnets = {
  IRCNet = { max_kicks = 4; max_modes = 3; max_msgs = 5; max_whois = 4; };
  EFNet = { max_kicks = 4; max_modes = 4; max_msgs = 3; };
  Undernet = { max_kicks = 4; max_modes = 3; max_msgs = 3; };
  DALNet = { max_kicks = 4; max_modes = 6; max_msgs = 3; };
  OPN = { max_kicks = 1; max_modes = 6; max_msgs = 100; };
  PTLink = { max_kicks = 1; max_modes = 6; max_msgs = 100; };
};

channels = (
  {
    name = "#irssi";
    chatnet = ircnet;
    autojoin = No;
  },
  {
    name = "#irssi";
    chatnet = efnet;
    autojoin = No;
  }
);

aliases = {
  J = "join";
  WJOIN = "join -window";
  WQUERY = "query -window";
  LEAVE = "part";
  BYE = "quit";
  EXIT = "quit";
  SIGNOFF = "quit";
  DESCRIBE = "action";
  DATE = "time";
  HOST = "userhost";
  LAST = "lastlog";
  SAY = "msg *";
  WI = "whois";
  WII = "whois $0 $0";
  WW = "whowas";
  W = "who $C";
  N = "names $C";
  M = "msg";
  T = "topic";
  C = "clear";
  CL = "clear";
  K = "kick";
  KB = "kickban";
  KN = "knockout";
  BANS = "ban";
  B = "ban";
  MUB = "unban *";
  UB = "unban";
  IG = "ignore";
  UNIG = "unignore";
  SB = "scrollback";
  UMODE = "mode $N";
  WC = "window close";
  WN = "window new hide";
  SV = "say Irssi $J - http://irssi.org";
  GOTO = "sb goto";
};

popups = (
  { label = "<MULTICOMMA>Whois"; command = "/whois %s"; },
  { label = "DCC Send File"; command = "/dcc send %s"; },
  { label = "Open DCC Chat"; command = "/dcc chat %s"; },
  { label = Query; command = "/query %s"; },
  { label = "<MENU><OP>"; command = "Op"; },
  { label = "<MULTI>Op"; command = "/op %s"; },
  { label = "<MULTI>Deop"; command = "/deop %s"; },
  { label = "<MULTI>Voice"; command = "/voice %s"; },
  { label = "<MULTI>Devoice"; command = "/devoice %s"; },
  { label = "<KICK>Kick"; command = "/kick %s %s"; },
  { label = "<MULTI>Ban"; command = "/ban %s"; },
  { label = "<KICK>Kick+ban"; command = "/kickban %s %s"; },
  { label = "<KICK>Knockout"; command = "/knockout %s %s"; },
  { label = "</MENU>"; command = ""; },
  { label = "<MENU>"; command = "CTCP"; },
  { label = Ping; command = "/ping %s"; },
  { label = Version; command = "/ver %s"; },
  { label = "</MENU>"; command = ""; }
);