├── .editorconfig ├── .gitignore ├── .gitmodules ├── .luacheckrc ├── Dockerfile ├── LICENSE ├── README.md ├── config.fnl ├── extern ├── fennel ├── fennel.lua └── fennelview.fnl ├── fennel_preamble.lua ├── install-dependencies.sh ├── launch.sh ├── main.lua ├── otouto ├── autils.lua ├── bot.lua ├── plugins │ ├── admin │ │ ├── add_admin.lua │ │ ├── add_group.lua │ │ ├── add_mod.lua │ │ ├── antibot.lua │ │ ├── antihammer_whitelist.lua │ │ ├── antilink.lua │ │ ├── antisquig.lua │ │ ├── antisquigpp.lua │ │ ├── antisticker.lua │ │ ├── autopromoter.lua │ │ ├── ban.lua │ │ ├── ban_remover.lua │ │ ├── deadmin.lua │ │ ├── delete_join_messages.lua │ │ ├── delete_left_messages.lua │ │ ├── demod.lua │ │ ├── files_only.lua │ │ ├── filter.lua │ │ ├── filterer.lua │ │ ├── fix_perms.lua │ │ ├── flags.lua │ │ ├── get_description.lua │ │ ├── get_link.lua │ │ ├── hammer.lua │ │ ├── interactive_flags.lua │ │ ├── kick.lua │ │ ├── kickme.lua │ │ ├── list_admins.lua │ │ ├── list_flags.fnl │ │ ├── list_groups.lua │ │ ├── list_mods.lua │ │ ├── list_rules.lua │ │ ├── mute.lua │ │ ├── regen_link.lua │ │ ├── remove_group.lua │ │ ├── set_description.lua │ │ ├── set_governor.lua │ │ ├── set_rules.lua │ │ ├── temp_ban.lua │ │ ├── unhammer.lua │ │ └── unrestrict.lua │ ├── core │ │ ├── about.fnl │ │ ├── control.lua │ │ ├── delete_messages.fnl │ │ ├── disable_plugins.fnl │ │ ├── end_forwards.fnl │ │ ├── group_info.fnl │ │ ├── group_whitelist.fnl │ │ ├── help.lua │ │ ├── luarun.fnl │ │ ├── paged_lists.lua │ │ ├── ping.fnl │ │ ├── user_blacklist.fnl │ │ ├── user_info.fnl │ │ └── user_lists.fnl │ └── user │ │ ├── apod.fnl │ │ ├── bible.fnl │ │ ├── calc.fnl │ │ ├── cat_fact.fnl │ │ ├── cats.fnl │ │ ├── commit.fnl │ │ ├── currency.lua │ │ ├── data │ │ ├── eight_ball.fnl │ │ └── slap.fnl │ │ ├── dice.fnl │ │ ├── dilbert.fnl │ │ ├── dump.lua │ │ ├── echo.fnl │ │ ├── eight_ball.fnl │ │ ├── full_width.lua │ │ ├── google_translate.lua │ │ ├── greetings.fnl │ │ ├── hex_color.lua │ │ ├── lastfm.lua │ │ ├── maybe.fnl │ │ ├── nickname.fnl │ │ ├── reactions.fnl │ │ ├── regex.fnl │ │ ├── reminders.fnl │ │ ├── shout.lua │ │ ├── slap.fnl │ │ ├── urban_dictionary.lua │ │ ├── user_lookup.fnl │ │ ├── whoami.fnl │ │ ├── wikipedia.fnl │ │ └── xkcd.fnl ├── rot13.fnl └── utilities.lua └── shell_preamble.fnl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/.gitmodules -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/.luacheckrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/README.md -------------------------------------------------------------------------------- /config.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/config.fnl -------------------------------------------------------------------------------- /extern/fennel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/extern/fennel -------------------------------------------------------------------------------- /extern/fennel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/extern/fennel.lua -------------------------------------------------------------------------------- /extern/fennelview.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/extern/fennelview.fnl -------------------------------------------------------------------------------- /fennel_preamble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/fennel_preamble.lua -------------------------------------------------------------------------------- /install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/install-dependencies.sh -------------------------------------------------------------------------------- /launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/launch.sh -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/main.lua -------------------------------------------------------------------------------- /otouto/autils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/autils.lua -------------------------------------------------------------------------------- /otouto/bot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/bot.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/add_admin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/add_admin.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/add_group.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/add_group.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/add_mod.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/add_mod.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/antibot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/antibot.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/antihammer_whitelist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/antihammer_whitelist.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/antilink.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/antilink.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/antisquig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/antisquig.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/antisquigpp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/antisquigpp.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/antisticker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/antisticker.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/autopromoter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/autopromoter.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/ban.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/ban.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/ban_remover.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/ban_remover.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/deadmin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/deadmin.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/delete_join_messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/delete_join_messages.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/delete_left_messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/delete_left_messages.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/demod.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/demod.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/files_only.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/files_only.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/filter.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/filterer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/filterer.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/fix_perms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/fix_perms.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/flags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/flags.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/get_description.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/get_description.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/get_link.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/get_link.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/hammer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/hammer.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/interactive_flags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/interactive_flags.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/kick.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/kick.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/kickme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/kickme.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/list_admins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/list_admins.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/list_flags.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/list_flags.fnl -------------------------------------------------------------------------------- /otouto/plugins/admin/list_groups.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/list_groups.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/list_mods.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/list_mods.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/list_rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/list_rules.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/mute.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/mute.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/regen_link.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/regen_link.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/remove_group.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/remove_group.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/set_description.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/set_description.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/set_governor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/set_governor.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/set_rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/set_rules.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/temp_ban.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/temp_ban.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/unhammer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/unhammer.lua -------------------------------------------------------------------------------- /otouto/plugins/admin/unrestrict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/admin/unrestrict.lua -------------------------------------------------------------------------------- /otouto/plugins/core/about.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/about.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/control.lua -------------------------------------------------------------------------------- /otouto/plugins/core/delete_messages.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/delete_messages.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/disable_plugins.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/disable_plugins.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/end_forwards.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/end_forwards.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/group_info.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/group_info.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/group_whitelist.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/group_whitelist.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/help.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/help.lua -------------------------------------------------------------------------------- /otouto/plugins/core/luarun.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/luarun.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/paged_lists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/paged_lists.lua -------------------------------------------------------------------------------- /otouto/plugins/core/ping.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/ping.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/user_blacklist.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/user_blacklist.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/user_info.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/user_info.fnl -------------------------------------------------------------------------------- /otouto/plugins/core/user_lists.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/core/user_lists.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/apod.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/apod.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/bible.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/bible.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/calc.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/calc.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/cat_fact.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/cat_fact.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/cats.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/cats.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/commit.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/commit.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/currency.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/currency.lua -------------------------------------------------------------------------------- /otouto/plugins/user/data/eight_ball.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/data/eight_ball.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/data/slap.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/data/slap.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/dice.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/dice.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/dilbert.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/dilbert.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/dump.lua -------------------------------------------------------------------------------- /otouto/plugins/user/echo.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/echo.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/eight_ball.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/eight_ball.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/full_width.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/full_width.lua -------------------------------------------------------------------------------- /otouto/plugins/user/google_translate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/google_translate.lua -------------------------------------------------------------------------------- /otouto/plugins/user/greetings.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/greetings.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/hex_color.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/hex_color.lua -------------------------------------------------------------------------------- /otouto/plugins/user/lastfm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/lastfm.lua -------------------------------------------------------------------------------- /otouto/plugins/user/maybe.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/maybe.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/nickname.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/nickname.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/reactions.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/reactions.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/regex.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/regex.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/reminders.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/reminders.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/shout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/shout.lua -------------------------------------------------------------------------------- /otouto/plugins/user/slap.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/slap.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/urban_dictionary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/urban_dictionary.lua -------------------------------------------------------------------------------- /otouto/plugins/user/user_lookup.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/user_lookup.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/whoami.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/whoami.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/wikipedia.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/wikipedia.fnl -------------------------------------------------------------------------------- /otouto/plugins/user/xkcd.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/plugins/user/xkcd.fnl -------------------------------------------------------------------------------- /otouto/rot13.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/rot13.fnl -------------------------------------------------------------------------------- /otouto/utilities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/otouto/HEAD/otouto/utilities.lua -------------------------------------------------------------------------------- /shell_preamble.fnl: -------------------------------------------------------------------------------- 1 | (eval-compiler (dofile :fennel_preamble.lua)) 2 | --------------------------------------------------------------------------------