Created
February 7, 2012 12:43
-
-
Save christianchristensen/1759526 to your computer and use it in GitHub Desktop.
Irssi Bitlbee (~/.irssi/config)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
servers = ( | |
{ | |
address = "HOST.NAME.HERE"; | |
chatnet = "Bitlbee"; | |
port = "6667"; | |
use_ssl = "no"; | |
ssl_verify = "no"; | |
autoconnect = "yes"; | |
} | |
); | |
chatnets = { | |
Bitlbee = { type = "IRC"; autosendcmd = "/^msg -bitlbee &bitlbee identify PASSWORD; wait -bitlbee 2000"; }; | |
}; | |
channels = ( | |
{ name = "#CHANNEL1"; chatnet = "Bitlbee"; autojoin = "yes"; } | |
{ name = "#CHANNEL2"; chatnet = "Bitlbee"; autojoin = "yes"; } | |
); | |
settings = { | |
core = { real_name = "NAME"; user_name = "USERNAME"; nick = "USERNAME"; }; | |
"fe-text" = { actlist_sort = "refnum"; }; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment