Created
September 9, 2011 19:05
-
-
Save amyreese/1207051 to your computer and use it in GitHub Desktop.
Irssi Config
This file contains 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
settings = { | |
core = { | |
real_name = "John Reese"; | |
user_name = "jreese"; | |
nick = "jreese"; | |
quit_message = "kthxbye"; | |
write_buffer_size = "15"; | |
write_buffer_timeout = "30"; | |
}; | |
"fe-text" = { | |
actlist_sort = "refnum"; | |
scroll_page_count = "5"; | |
scrollback_time = "2day"; | |
scrollback_lines = "2000"; | |
paste_join_multiline = "no"; | |
}; | |
"fe-common/core" = { | |
window_history = "yes"; | |
emphasis = "yes"; | |
emphasis_multiword = "yes"; | |
emphasis_replace = "yes"; | |
show_own_nickchange_once = "yes"; | |
window_auto_change = "yes"; | |
theme = "jreese"; | |
hilight_nick_matches = "no"; | |
hilight_color = "%R"; | |
autocreate_own_query = "yes"; | |
}; | |
"irc/core" = { | |
part_message = "bai"; | |
alternate_nick = "jreese_"; | |
skip_motd = "yes"; | |
}; | |
}; | |
chatnets = { | |
bitlbee = { type = "IRC"; }; | |
freenode = { type = "IRC"; }; | |
}; | |
servers = ( | |
{ | |
address = "bitlbee.something"; | |
chatnet = "bitlbee"; | |
port = "9000"; | |
password = "bitlbee:something"; | |
use_ssl = "yes"; | |
ssl_verify = "no"; | |
autoconnect = "yes"; | |
}, | |
{ | |
address = "freenode.something"; | |
chatnet = "freenode"; | |
port = "9000"; | |
password = "freenode:something"; | |
use_ssl = "yes"; | |
ssl_verify = "no"; | |
autoconnect = "yes"; | |
}, | |
); | |
channels = ( | |
{ name = "&bitlbee"; chatnet = "bitlbee"; autojoin = "yes"; }, | |
{ name = "#mantishelp"; chatnet = "freenode"; autojoin = "yes"; } | |
); | |
logs = { }; | |
aliases = { | |
wc = "window close"; | |
1 = "window goto 1"; | |
2 = "window goto 2"; | |
3 = "window goto 3"; | |
4 = "window goto 4"; | |
5 = "window goto 5"; | |
6 = "window goto 6"; | |
7 = "window goto 7"; | |
8 = "window goto 8"; | |
n = "window next"; | |
p = "window previous"; | |
}; | |
hilights = ( | |
{ text = "nuclear_eclipse"; nick = "yes"; word = "yes"; }, | |
{ text = "jreese"; nick = "yes"; word = "yes"; } | |
); | |
windows = { | |
1 = { immortal = "yes"; name = "(status)"; level = "ALL"; }; | |
2 = { name = "hilight"; sticky = "yes"; }; | |
3 = { | |
items = ( | |
{ | |
type = "CHANNEL"; | |
chat_type = "IRC"; | |
name = "&bitlbee"; | |
tag = "bitlbee"; | |
} | |
); | |
}; | |
4 = { | |
items = ( | |
{ | |
type = "CHANNEL"; | |
chat_type = "IRC"; | |
name = "#mantishelp"; | |
tag = "freenode"; | |
} | |
); | |
}; | |
}; | |
mainwindows = { | |
1 = { first_line = "4"; lines = "18"; }; | |
2 = { first_line = "1"; lines = "3"; }; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment