]> git.rmz.io Git - dotfiles.git/commitdiff
weechat: add matrix plugin
authorSamir Benmendil <me@rmz.io>
Wed, 2 Nov 2016 11:21:43 +0000 (11:21 +0000)
committerSamir Benmendil <me@rmz.io>
Wed, 2 Nov 2016 11:27:41 +0000 (11:27 +0000)
.gitmodules
weechat/lua/matrix [new submodule]
weechat/plugins.conf

index b21af1a877a56254531847184c430e0e3bfb9d81..ae99b777d3df27b9a3570d91f6c22d7689cd6595 100644 (file)
@@ -16,3 +16,6 @@
 [submodule "weechat/python/wee-slack"]
        path = weechat/python/wee-slack
        url = https://github.com/rawdigits/wee-slack
+[submodule "weechat/lua/matrix"]
+       path = weechat/lua/matrix
+       url = https://github.com/torhve/weechat-matrix-protocol-script
diff --git a/weechat/lua/matrix b/weechat/lua/matrix
new file mode 160000 (submodule)
index 0000000..bdaf2d4
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit bdaf2d4886c1da68bb134ece7bbd506cfec51637
index b572980e4895461d77625523cd7456568ff7aa93..d640621d83764ed2d0618168f7aabee3b0509444 100644 (file)
@@ -6,6 +6,15 @@
 fifo.fifo = "on"
 guile.check_license = "off"
 lua.check_license = "off"
+lua.matrix.autojoin_on_invite = "on"
+lua.matrix.backlog_lines = "120"
+lua.matrix.debug = "off"
+lua.matrix.encrypted_message_color = "lightgreen"
+lua.matrix.homeserver_url = "https://matrix.org/"
+lua.matrix.local_echo = "on"
+lua.matrix.password = ""
+lua.matrix.typing_notices = "on"
+lua.matrix.user = ""
 perl.beep.beep_command_dcc = "$bell"
 perl.beep.beep_command_highlight = "$bell"
 perl.beep.beep_command_pv = "$bell"
@@ -70,6 +79,15 @@ ruby.check_license = "off"
 tcl.check_license = "off"
 
 [desc]
+lua.matrix.autojoin_on_invite = "Automatically join rooms you are invited to (default: "on")"
+lua.matrix.backlog_lines = "Number of lines to fetch from backlog upon connecting (default: "120")"
+lua.matrix.debug = "Print a lot of extra information to help with finding bugs and other problems. (default: "off")"
+lua.matrix.encrypted_message_color = "Print encrypted mesages with this color (default: "lightgreen")"
+lua.matrix.homeserver_url = "Full URL including port to your homeserver (including trailing slash) or use default matrix.org (default: "https://matrix.org/")"
+lua.matrix.local_echo = "Print lines locally instead of waiting for return from server (default: "on")"
+lua.matrix.password = "Your homeserver password (default: "")"
+lua.matrix.typing_notices = "Send typing notices when you type (default: "on")"
+lua.matrix.user = "Your homeserver username (default: "")"
 perl.beep.beep_command_dcc = "command for beep on dcc, special value "$bell" is allowed, as well as "$bell;command" (default: "$bell")"
 perl.beep.beep_command_highlight = "command for beep on highlight, special value "$bell" is allowed, as well as "$bell;command" (default: "$bell")"
 perl.beep.beep_command_pv = "command for beep on private message, special value "$bell" is allowed, as well as "$bell;command" (default: "$bell")"