Created
May 29, 2013 14:39
-
-
Save dep-deprecated/5670784 to your computer and use it in GitHub Desktop.
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
settings = { | |
core = { | |
real_name = "dep"; | |
user_name = "dep"; | |
nick = "dp"; | |
log_close_string = "--- Log closed %a %b %d %H:%M:%S %Y"; | |
log_timestamp = "(%H:%M) "; | |
log_day_changed = "--- Day changed %a %b %d %Y"; | |
}; | |
"fe-text" = { actlist_sort = "refnum"; }; | |
"fe-common/core" = { | |
beep_when_window_active = "yes"; | |
theme = "fear2"; | |
autolog = "on"; | |
autolog_path = "/Users/dannypeck/.irssi/logs/$tag/$0.log"; | |
autolog_level = "all"; | |
autoclose_windows = "yes"; | |
autocreate_windows = "yes"; | |
use_status_window = "no"; | |
hilight_color = "= %Y"; | |
timestamps = "no"; | |
}; | |
"perl/core/scripts" = { | |
growl_server = "localhost"; | |
growl_password = "passwd_here"; | |
growl_on_regex = " .*"; | |
first_away_message = ""; | |
second_away_message = ""; | |
first_away_timeout = "1800"; | |
second_away_timeout = "3600"; | |
crapbuster_levels = "JOINS PARTS QUITS NICKS CLIENTCRAP CRAP MODE TOPICS KICKS"; | |
}; | |
"fe-common/irc" = { group_multi_mode = "yes"; }; | |
}; | |
servers = ( | |
{ | |
address = "localhost"; | |
chatnet = "Bitlbee"; | |
port = "6667"; | |
use_ssl = "no"; | |
ssl_verify = "no"; | |
autoconnect = "yes"; | |
} | |
); | |
chatnets = { | |
Bitlbee = { type = "IRC"; autosendcmd = "/im passwd_goes_here"; }; | |
Eightbit = { type = "IRC"; }; | |
}; | |
statusbar = { | |
default = { | |
window = { | |
items = { | |
barstart = { priority = "100"; }; | |
time = { }; | |
user = { }; | |
window = { }; | |
window_empty = { }; | |
lag = { priority = "-1"; }; | |
act = { priority = "10"; }; | |
more = { priority = "-1"; alignment = "right"; }; | |
barend = { priority = "100"; alignment = "right"; }; | |
typing_notice = { }; | |
join_notice = { }; | |
}; | |
}; | |
awl_0 = { | |
items = { | |
barstart = { priority = "100"; }; | |
awl_0 = { }; | |
barend = { priority = "100"; alignment = "right"; }; | |
}; | |
}; | |
}; | |
}; | |
hilights = ( | |
{ text = "dep -word"; nick = "yes"; word = "yes"; }, | |
{ text = "danny -word"; nick = "yes"; word = "yes"; } | |
); | |
aliases = { | |
im = "msg -bitlbee &bitlbee identify ldr0101"; | |
imon = "msg -bitlbee &bitlbee account on"; | |
imoff = "msg -bitlbee &bitlbee account off"; | |
wh = "who &bitlbee"; | |
}; | |
ignores = ( | |
{ | |
level = "PARTS QUITS MODES"; | |
channels = ( "highlite", "#highlite", "&bitlbee" ); | |
}, | |
{ level = "MODES"; channels = ( "&bitlbee" ); } | |
); | |
logs = { }; | |
windows = { | |
1 = { | |
items = ( | |
{ | |
type = "CHANNEL"; | |
chat_type = "IRC"; | |
name = "&bitlbee"; | |
tag = "Bitlbee"; | |
} | |
); | |
sticky = "yes"; | |
}; | |
2 = { name = "highlite"; sticky = "yes"; parent = "1"; }; | |
}; | |
mainwindows = { 1 = { first_line = "1"; lines = "38"; }; }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment