mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
Fix go exports
This commit is contained in:
118
irssi/.irssi/config.j2
Normal file
118
irssi/.irssi/config.j2
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
servers = (
|
||||||
|
{
|
||||||
|
address = "eu.tilde.chat";
|
||||||
|
chatnet = "tildechat";
|
||||||
|
port = "6697";
|
||||||
|
use_tls = "yes";
|
||||||
|
tls_verify = "no";
|
||||||
|
autoconnect = "yes";
|
||||||
|
},
|
||||||
|
{
|
||||||
|
address = "irc.freenode.net";
|
||||||
|
chatnet = "freenode";
|
||||||
|
port = "6667";
|
||||||
|
use_tls = "no";
|
||||||
|
tls_verify = "no";
|
||||||
|
autoconnect = "yes";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
chatnets = {
|
||||||
|
tildechat = {
|
||||||
|
type = "IRC";
|
||||||
|
autosendcmd = "^MSG NickServ identify {{ tildechat_ident }}";
|
||||||
|
};
|
||||||
|
freenode = {
|
||||||
|
type = "IRC";
|
||||||
|
autosendcmd = "^MSG nickserv identify {{ freenode_ident }}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
channels = (
|
||||||
|
{ name = "#dimension"; chatnet = "tilechat"; autojoin = "yes"; },
|
||||||
|
{ name = "#dimension"; chatnet = "tildechat"; autojoin = "yes"; },
|
||||||
|
{ name = "#meta"; chatnet = "tildechat"; autojoin = "yes"; },
|
||||||
|
{
|
||||||
|
name = "#idlerpg";
|
||||||
|
chatnet = "tildechat";
|
||||||
|
autojoin = "yes";
|
||||||
|
password = "-botmd";
|
||||||
|
botmasks = "ubergeek@thunix.net";
|
||||||
|
autosendcmd = "^MSG idlerpg_bot login Matalok {{ tildechat_idlerpg }}";
|
||||||
|
},
|
||||||
|
{ name = "#geekhack"; chatnet = "freenode"; autojoin = "yes"; },
|
||||||
|
{ name = "#livlug"; chatnet = "Freenode"; autojoin = "yes"; },
|
||||||
|
{ name = "#gemini"; chatnet = "tildechat"; autojoin = "yes"; }
|
||||||
|
);
|
||||||
|
settings = {
|
||||||
|
core = {
|
||||||
|
real_name = "Unknown";
|
||||||
|
user_name = "nikdoof";
|
||||||
|
nick = "nikdoof";
|
||||||
|
};
|
||||||
|
"fe-text" = { actlist_sort = "refnum"; colors_ansi_24bit = "yes"; };
|
||||||
|
"fe-common/core" = {
|
||||||
|
activity_hide_level = "QUITS JOINS PARTS KICKS MODES TOPIC NICKS";
|
||||||
|
theme = "IamCyan";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
logs = { };
|
||||||
|
hilights = ( { text = "matalok"; nick = "yes"; word = "yes"; } );
|
||||||
|
windows = {
|
||||||
|
1 = { immortal = "yes"; name = "(status)"; level = "ALL"; };
|
||||||
|
2 = {
|
||||||
|
items = (
|
||||||
|
{
|
||||||
|
type = "CHANNEL";
|
||||||
|
chat_type = "IRC";
|
||||||
|
name = "#geekhack";
|
||||||
|
tag = "freenode";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
3 = {
|
||||||
|
items = (
|
||||||
|
{
|
||||||
|
type = "CHANNEL";
|
||||||
|
chat_type = "IRC";
|
||||||
|
name = "#livlug";
|
||||||
|
tag = "freenode";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
4 = {
|
||||||
|
items = (
|
||||||
|
{
|
||||||
|
type = "CHANNEL";
|
||||||
|
chat_type = "IRC";
|
||||||
|
name = "#dimension";
|
||||||
|
tag = "tildechat";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
5 = {
|
||||||
|
items = (
|
||||||
|
{
|
||||||
|
type = "CHANNEL";
|
||||||
|
chat_type = "IRC";
|
||||||
|
name = "#meta";
|
||||||
|
tag = "tildechat";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
6 = {
|
||||||
|
items = (
|
||||||
|
{
|
||||||
|
type = "CHANNEL";
|
||||||
|
chat_type = "IRC";
|
||||||
|
name = "#idlerpg";
|
||||||
|
tag = "tildechat";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
7 = { immortal = "yes"; name = "hilight"; sticky = "yes"; };
|
||||||
|
};
|
||||||
|
mainwindows = {
|
||||||
|
1 = { first_line = "9"; lines = "37"; };
|
||||||
|
7 = { first_line = "1"; lines = "8"; };
|
||||||
|
};
|
||||||
@@ -16,15 +16,15 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Go stuff
|
# Go stuff
|
||||||
if [ -d /usr/local/go ]; then
|
export GOPATH=$HOME/go/
|
||||||
|
if [ -z ${GOROOT+x} ] && [ -d /usr/local/go ]; then
|
||||||
export GOROOT=/usr/local/go/
|
export GOROOT=/usr/local/go/
|
||||||
export GOPATH=$HOME/go/
|
export PATH=$PATH:$HOME/go/bin
|
||||||
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
|
fi
|
||||||
|
|
||||||
# https://github.com/oz/tz
|
# https://github.com/oz/tz
|
||||||
if [ -f $HOME/go/bin/tz ]; then
|
if [ -f $HOME/go/bin/tz ]; then
|
||||||
export TZ_LIST="America/New_York,America/Los_Angeles,Europe/Paris"
|
export TZ_LIST="America/New_York,America/Los_Angeles,Europe/Paris"
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# OSX Specific envs
|
# OSX Specific envs
|
||||||
|
|||||||
Reference in New Issue
Block a user