Skip to content

Instantly share code, notes, and snippets.

@tallowen
Created August 20, 2011 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tallowen/1159650 to your computer and use it in GitHub Desktop.
Save tallowen/1159650 to your computer and use it in GitHub Desktop.
Owen's irssi config
servers = (
{
address = "irc.mozilla.org";
chatnet = "moznet";
port = "6697";
use_ssl = "yes";
ssl_verify = "no";
autoconnect = "yes";
password = "<Insert your password>";
},
{
address = "irc.freenode.org";
chatnet = "freenode";
port = "6667";
use_ssl = "no";
autoconnect = "yes";
password = "<Insert Your Password>";
},
);
chatnets = { moznet = { type = "IRC"; }; freenode = { type = "IRC"; }; };
channels = (
{ name = "#interns"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#qa"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#firefox"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#planning"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#ux"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#labs"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#sync"; chatnet = "moznet"; autojoin = "yes"; },
{
name = "#services";
password = "########";
chatnet = "moznet";
autojoin = "yes";
},
{ name = "#deuxdrop"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#webdev"; chatnet = "moznet"; autojoin = "yes"; },
{ name = "#elasticsearch"; chatnet = "freenode"; autojoin = "yes"; },
);
settings = {
core = {
real_name = "Owen Coutts";
user_name = "ocoutts";
nick = "ocoutts";
};
"fe-text" = { actlist_sort = "refnum"; };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment