diff options
author | xero <x@xero.nu> | 2016-03-29 19:41:39 -0400 |
---|---|---|
committer | xero <x@xero.nu> | 2016-03-29 19:41:39 -0400 |
commit | d192066a6cd4f0adb35a60a7d5a8ab2431bb2dc8 (patch) | |
tree | e1d72f06f9e33655d0d8fe1e1e4ba9255ce490a1 /irssi/.irssi/config | |
parent | cf6f41aa4571b55796af9b7034ba923b9c321eb8 (diff) | |
download | dotfiles_ascii-d192066a6cd4f0adb35a60a7d5a8ab2431bb2dc8.tar.xz dotfiles_ascii-d192066a6cd4f0adb35a60a7d5a8ab2431bb2dc8.zip |
add neongold irssi theme and cyberpunk wall
Diffstat (limited to '')
-rw-r--r-- | irssi/.irssi/config | 62 |
1 files changed, 58 insertions, 4 deletions
diff --git a/irssi/.irssi/config b/irssi/.irssi/config index a26bade..7b9c6c0 100644 --- a/irssi/.irssi/config +++ b/irssi/.irssi/config @@ -13,12 +13,66 @@ # ░▓ mirror ▓ http://git.io/.files # ░▓▓▓▓▓▓▓▓▓▓ # ░░░░░░░░░░ -# + +utf8 = "on"; + +servers = ( + { + address = "unix.chat"; + chatnet = "unixchat"; + port = "6697"; + use_ssl = "yes"; + ssl_verify = "yes"; + ssl_capath = "/etc/ssl/certs/"; + autoconnect = "yes"; + } +); + +chatnets = { unixchat = { type = "IRC"; nick = "xero"; }; }; + +channels = ( + { name = "#nixers"; chatnet = "unixchat"; autojoin = "Yes"; }, + { name = "#iotek"; chatnet = "unixchat"; autojoin = "Yes"; }, + { name = "#gentlemanloser"; chatnet = "unixchat"; autojoin = "Yes"; } +); + +aliases = { + emote = "exec -o emote"; + ascii = "exec -o toilet -f future --irc"; + rusto = "exec -o toilet -f rusto --irc"; + rustofat = "exec -o toilet -f rustofat --irc"; + gay = "exec -o toilet -f term --gay --irc"; + toilet = "exec -o toilet"; +}; + settings = { core = { real_name = "xero"; user_name = "xero"; nick = "xero"; }; - "fe-text" = { actlist_sort = "refnum"; }; + "fe-text" = { + actlist_sort = "refnum"; + term_force_colors = "yes"; + indent = "12"; + }; "fe-common/core" = { - theme = "nixers.theme"; - bell_beeps = "no"; + theme = "neongold.theme"; + bell_beeps = "no"; + autolog_path = "/var/logs/irc/$tag/$0.log"; + autolog = "yes"; + }; +}; +logs = { }; +statusbar = { + default = { + window = { + items = { + barstart = { priority = "100"; }; + user = { }; + window = { }; + window_empty = { }; + lag = { priority = "-1"; }; + act = { priority = "10"; }; + more = { priority = "-1"; alignment = "right"; }; + barend = { priority = "100"; alignment = "right"; }; + }; + }; }; }; |