Skip to content

Instantly share code, notes, and snippets.

@djordjecupic
Last active June 5, 2019 16:56
Show Gist options
  • Save djordjecupic/ee9346934023094108dac2ca04a8589c to your computer and use it in GitHub Desktop.
Save djordjecupic/ee9346934023094108dac2ca04a8589c to your computer and use it in GitHub Desktop.
irssi config Example
# Core settings
settings = {
core = {
real_name = "Djordje Cupic";
# Visible in front of the Address
user_name = "djordjecupic"
# Visible in channels
nick = "djordjecupic"
};
};
# Servers
servers = (
{
address = "irc.mozilla.org";
chatnet = "Mozilla";
port = "6697";
autoconnect = "yes";
# Mutually exclusive with pair bellow
use_tls = "yes";
tls_verify = "yes";
# Mutually exclusive with pair above
use_ssl = "no";
ssl_verify = "no";
ssl_capath = "/etc/ssl/certs";
}
);
# Networks
chatnets = {
Mozilla = {
type = "IRC";
max_kicks = "1";
max_msgs = "4";
max_whois = "1";
sasl_mechanism = "PLAIN";
sasl_username = "djordjecupic";
sasl_password = "pasw0rd";
};
};
# Channels
channels = (
{
name = "#mozilla";
chatnet = "Mozilla";
autojoin = "No";
},
{
name = "#hydra1969";
chatnet = "Mozilla";
autojoin = "Yes";
password = "passw0rd";
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment