Skip to content

Commit

Permalink
irssi update. zshrc update. gvim update.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinifni committed Jan 3, 2011
1 parent f2db7a6 commit 6d0eb15
Show file tree
Hide file tree
Showing 31 changed files with 1,854 additions and 6,490 deletions.
275 changes: 132 additions & 143 deletions all/irssi/config
Original file line number Diff line number Diff line change
@@ -1,21 +1,40 @@
# -*- sh -*-
servers = (
{ address = "irc.stealth.net"; chatnet = "IRCnet"; port = "6668"; },
{ address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; },
{ address = "irc.efnet.net"; chatnet = "EFNet"; port = "6667"; },
{
address = "irc.undernet.org";
chatnet = "Undernet";
port = "6667";
},
{ address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; },
{
address = "irc.quakenet.org";
chatnet = "QuakeNet";
address = "irc.freenode.net";
chatnet = "freenode";
port = "6667";
},
{ address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; },
{ address = "irc.gnome.org"; chatnet = "GIMPNet"; port = "6667"; },
{ address = "irc.ptlink.net"; chatnet = "PTlink"; port = "6667"; },
{
address = "irc.sorcery.net";
chatnet = "SorceryNet";
port = "6667";
},
{
address = "irc.hashmark.net";
chatnet = "Hashmark";
port = "6667";
},
{ address = "irc.ptnet.org"; chatnet = "PTnet"; port = "6667"; },
{
address = "irc.azzurra.org";
chatnet = "AzzurraNET";
port = "6667";
},
{ address = "silc.pspt.fi"; chatnet = "SILC"; port = "706"; },
{
address = "irc.freenode.net";
chatnet = "FreeNode";
address = "irc.quakenet.org";
chatnet = "QuakeNet";
port = "6667";
use_ssl = "no";
ssl_verify = "no";
Expand All @@ -27,48 +46,91 @@ chatnets = {
IRCnet = {
type = "IRC";
max_kicks = "4";
max_modes = "3";
max_msgs = "5";
max_whois = "4";
max_query_chans = "5";
};
EFNet = {
EFNet = {
type = "IRC";
max_kicks = "4";
max_modes = "4";
max_msgs = "3";
max_whois = "1";
};
FreeNode = {
Undernet = {
type = "IRC";
autosendcmd = "/^msg nickserv identify w000t;wait 2000";
max_kicks = "4";
max_modes = "3";
max_msgs = "3";
max_whois = "30";
};
DALnet = {
type = "IRC";
max_kicks = "4";
max_modes = "6";
max_msgs = "3";
max_whois = "30";
};
freenode = {
type = "IRC";
max_kicks = "4";
max_modes = "4";
max_msgs = "1";
max_whois = "1";
};
Undernet = {
GIMPNet = {
type = "IRC";
max_kicks = "1";
max_kicks = "4";
max_modes = "4";
max_msgs = "3";
max_whois = "1";
};
PTlink = {
type = "IRC";
max_kicks = "1";
max_modes = "6";
max_msgs = "30";
max_whois = "1";
};
SorceryNet = {
type = "IRC";
max_kicks = "30";
max_modes = "6";
max_msgs = "30";
max_whois = "30";
};
DALnet = {
Hashmark = {
type = "IRC";
max_kicks = "4";
max_modes = "3";
max_msgs = "3";
max_whois = "30";
};
PTnet = {
type = "IRC";
max_kicks = "30";
max_modes = "13";
max_msgs = "10";
max_whois = "30";
};
AzzurraNET = {
type = "IRC";
max_kicks = "4";
max_modes = "6";
max_msgs = "3";
};
SILC = { type = "SILC"; };
QuakeNet = {
type = "IRC";
max_kicks = "1";
max_msgs = "3";
max_whois = "30";
};
SILC = { type = "SILC"; };
};

channels = (
{ name = "#ruby-lang"; chatnet = "freenode"; autojoin = "Yes"; },
{ name = "#rspec"; chatnet = "freenode"; autojoin = "Yes"; },
{ name = "#mises"; chatnet = "freenode"; autojoin = "Yes"; }
channels = (
{ name = "#BigT"; chatnet = "quakenet"; autojoin = "Yes"; }
);

aliases = {
Expand Down Expand Up @@ -110,127 +172,14 @@ aliases = {
GOTO = "sb goto";
CHAT = "dcc chat";
RUN = "SCRIPT LOAD";
UPTIME = "eval exec - expr `date +%s` - \\$F | awk '{print \"Irssi uptime: \"int(\\\\\\$1/3600/24)\"d \"int(\\\\\\$1/3600%24)\"h \"int(\\\\\\$1/60%60)\"m \"int(\\\\\\$1%60)\"s\" }'";
CALC = "exec - if which bc &>/dev/null\\; then echo '$*' | bc | awk '{print \"$*=\"$$1}'\\; else echo bc was not found\\; fi";
SBAR = "STATUSBAR";
INVITELIST = "mode $C +I";
Q = "QUERY";
"MANUAL-WINDOWS" = "set use_status_window off;set autocreate_windows off;set autocreate_query_level none;set autoclose_windows off;set reuse_unused_windows on;save";
EXEMPTLIST = "mode $C +e";
ATAG = "WINDOW SERVER";
wk = "wc";
};

# statusbar = {
# # formats:
# # when using {templates}, the template is shown only if it's argument isn't
# # empty unless no argument is given. for example {sb} is printed always,
# # but {sb $T} is printed only if $T isn't empty.
#
# items = {
# # start/end text in statusbars
# barstart = "{sbstart}";
# barend = "{sbend}";
#
# topicbarstart = "{topicsbstart}";
# topicbarend = "{topicsbend}";
#
# # treated "normally", you could change the time/user name to whatever
# time = "{sb $Z}";
# user = "{sb {sbnickmode $cumode}$N{sbmode $usermode}{sbaway $A}}";
#
# # treated specially .. window is printed with non-empty windows,
# # window_empty is printed with empty windows
# window = "{sb $winref:$tag/$itemname{sbmode $M}}";
# window_empty = "{sb $winref{sbservertag $tag}}";
# prompt = "{prompt $[.15]itemname}";
# prompt_empty = "{prompt $winname}";
# topic = " $topic";
# topic_empty = " Irssi v$J - http://irssi.org/help/";
#
# # all of these treated specially, they're only displayed when needed
# lag = "{sb Lag: $0-}";
# act = "{sb Act: $0-}";
# more = "-- more --";
# };
#
# # there's two type of statusbars. root statusbars are either at the top
# # of the screen or at the bottom of the screen. window statusbars are at
# # the top/bottom of each split window in screen.
# default = {
# # the "default statusbar" to be displayed at the bottom of the window.
# # contains all the normal items.
# window = {
# disabled = "no";
#
# # window, root
# type = "window";
# # top, bottom
# placement = "bottom";
# # number
# position = "1";
# # active, inactive, always
# visible = "active";
#
# # list of items in statusbar in the display order
# 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"; };
# };
# };
#
# # statusbar to use in inactive split windows
# window_inact = {
# type = "window";
# placement = "bottom";
# position = "1";
# visible = "inactive";
# items = {
# barstart = { priority = "100"; };
# window = { };
# window_empty = { };
# more = { priority = "-1"; alignment = "right"; };
# barend = { priority = "100"; alignment = "right"; };
# };
# };
#
# # we treat input line as yet another statusbar :) It's possible to
# # add other items before or after the input line item.
# prompt = {
# type = "root";
# placement = "bottom";
# # we want to be at the bottom always
# position = "100";
# visible = "always";
# items = {
# prompt = { priority = "-1"; };
# prompt_empty = { priority = "-1"; };
# # treated specially, this is the real input line.
# input = { priority = "10"; };
# };
# };
#
# # topicbar
# topic = {
# type = "root";
# placement = "top";
# position = "1";
# visible = "always";
# items = {
# topicbarstart = { priority = "100"; };
# topic = { };
# topic_empty = { };
# topicbarend = { priority = "100"; alignment = "right"; };
# };
# };
# };
# };

statusbar = {
# formats:
# when using {templates}, the template is shown only if it's argument isn't
Expand All @@ -251,8 +200,8 @@ statusbar = {
# window_empty is printed with empty windows
window = "{sb $winref%K:%n$T%K(%n{sbmode $M}%K)%n}";
window_empty = "{sb $winref{sbservertag $tag}}";
prompt = "{sbmode $[-4]usermode} {sb $cumode_space$[-9]N%K|%n} ";
prompt_empty = "{sbmode $[-4]usermode} {sb $cumode_space$[-9]N%K|%n} ";
prompt = "{prompt $[-4]usermode} {sb $[-11]N%K|%n} ";
prompt_empty = "{prompt $[-4]usermode} {sb $[-11]N%K|%n} ";

# all of these treated specially, they're only displayed when needed
lag = " {sb Lag: $0-}";
Expand Down Expand Up @@ -281,6 +230,7 @@ statusbar = {
window = { };
window_empty = { };
lag = { priority = "-1"; };
act = { priority = "10"; };
away = { priority = "-1"; };
more = { priority = "-1"; };
mood_bar = { alignment = "right"; priority = "-1"; };
Expand Down Expand Up @@ -338,15 +288,54 @@ statusbar = {
};
};

#keyboard = (
#{ key = "insert"; id = "command"; data = "/window grow 1"; },
#{ key = "delete"; id = "command"; data = "/window shrink 1"; },
#{ key = "meta-delete"; id = "delete_previous_word"; data = ""; }
#);

settings = {
core = { real_name = "scudco"; user_name = "scudco"; nick = "scudco"; };
"fe-text" = { actlist_sort = "refnum"; };
"fe-common/core" = { theme = "dot"; };
"perl/core/scripts" = {
growl_show_privmsg = "yes";
growl_show_hilight = "yes";
awl_display_key = "$Q%K|%n$H$C$S";
awl_block = "-15";
"fe-common/core" = {
#autolog = "yes";
#autolog_path = "~/.irssi/logs/$tag/$0.log";
beep_msg_level = "msgs";
beep_when_away = "no";
beep_when_window_active = "no";
bell_beeps = "yes";
completion_char = ",";
hide_server_tags = "yes";
hilight_nick_matches = "no";
#window_auto_change = "no";
#window_check_level_first = "yes";
#window_history = "yes";
};
core = {
real_name = "tinifni";
user_name = "tinifni";
nick = "tinifni";
};
"fe-text" = { actlist_sort = "refnum"; };
};
hilights = ( { text = "scudco"; nick = "yes"; word = "yes"; } );
#windows = {
#2 = {
#items = (
#{
#type = "CHANNEL";
#chat_type = "IRC";
#name = "#testje";
#tag = "freenode";
#}
#);
#sticky = "yes";
#};
#1 = {
#name = "(status)";
#level = "CRAP NOTICES SNOTES CTCPS JOINS PARTS QUITS KICKS MODES TOPICS WALLOPS NICKS CLIENTNOTICES CLIENTCRAP CLIENTERRORS HILIGHTS";
#sticky = "yes";
#scroll = "yes";
#};
#};
#mainwindows = {
#2 = { first_line = "13"; lines = "35"; };
#1 = { first_line = "0"; lines = "13"; };
#};
Loading

0 comments on commit 6d0eb15

Please sign in to comment.