Skip to content

Instantly share code, notes, and snippets.

@rey
Last active April 13, 2023 19:34
Show Gist options
  • Save rey/4296075 to your computer and use it in GitHub Desktop.
Save rey/4296075 to your computer and use it in GitHub Desktop.
Irssi config example
servers = (
{
address = "irc.freenode.net";
chatnet = "freenode";
port = "6667";
use_ssl = "no";
ssl_verify = "no";
autoconnect = "yes";
}
);
chatnets = {
Freenode = {
type = "IRC";
autosendcmd = "/msg nickserv identify tstark password1";
};
};
channels = (
{ name = "#test-channel"; chatnet = "Freenode"; autojoin = "Yes"; }
{ name = "#private-test-channel"; chatnet = "Freenode"; password = "password1"; autojoin = "Yes"; }
);
settings = {
core = { real_name = "Tony Stark"; user_name = "tstark"; nick = "tstark"; };
"fe-text" = { actlist_sort = "refnum"; term_force_colors = "yes"; scrollback_time = "7day "; };
"fe-common/core" = { theme = "default"; };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment