diff options
Diffstat (limited to '.config/weechat/plugins.conf')
-rw-r--r-- | .config/weechat/plugins.conf | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/.config/weechat/plugins.conf b/.config/weechat/plugins.conf new file mode 100644 index 0000000..7a0329d --- /dev/null +++ b/.config/weechat/plugins.conf @@ -0,0 +1,93 @@ +# +# weechat -- plugins.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use commands like /set or /fset to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/weechat/quickstart/ +# + +[var] +lua.emoji.incoming = "on" +perl.mass_hl_blocker.limit = "5" +perl.multiline.char = "↩" +perl.multiline.hide_magic_nl = "on" +perl.multiline.ipl = "on" +perl.multiline.lead_linebreak = "on" +perl.multiline.magic = "‼" +perl.multiline.magic_enter_time = "1000" +perl.multiline.magic_paste_only = "off" +perl.multiline.modify_keys = "on" +perl.multiline.paste_lock = "1" +perl.multiline.send_empty = "on" +perl.multiline.tab = "──▶▏" +perl.multiline.weechat_paste_fix = "on" +perl.notify_send.command = "notify-send $type: $name &>/dev/null" +perl.notify_send.ignore_nicks = "" +perl.notify_send.wait_highlight = "60" +perl.notify_send.wait_pm = "180" +python.apply_corrections.check_every = "5" +python.apply_corrections.data_timeout = "60" +python.apply_corrections.message_limit = "2" +python.apply_corrections.print_format = "[nick]: [corrected]" +python.apply_corrections.print_limit = "1" +python.bitlbee_typing_notice.channel = "&bitlbee" +python.bitlbee_typing_notice.server = "bitlbee" +python.bitlbee_typing_notice.timeout = "4" +python.go.auto_jump = "off" +python.go.buffer_number = "on" +python.go.color_name = "black,cyan" +python.go.color_name_highlight = "red,cyan" +python.go.color_name_highlight_selected = "red,brown" +python.go.color_name_selected = "black,brown" +python.go.color_number = "yellow,magenta" +python.go.color_number_selected = "yellow,red" +python.go.fuzzy_search = "off" +python.go.message = "Go to: " +python.go.min_chars = "0" +python.go.short_name = "off" +python.go.short_name_server = "off" +python.go.sort = "number,beginning" +python.go.use_core_instead_weechat = "off" + +[desc] +lua.emoji.incoming = "Also try to replace shortcodes to emoji in incoming messages (default: "on")" +perl.mass_hl_blocker.limit = "minimum amount of nicks in line to disable highlight (default: 5)" +perl.multiline.char = "character(s) which should be displayed to indicate end of line" +perl.multiline.hide_magic_nl = "whether the new line inserted by magic enter key will be hidden" +perl.multiline.ipl = "this setting controls override of ctrl-M (enter key) by script. Turn it off if you don't want multiline.pl to set and re-set the key binding." +perl.multiline.lead_linebreak = "if turned on, multi-line messages always start on a new line" +perl.multiline.magic = "indicator displayed when message will be sent soon" +perl.multiline.magic_enter_time = "delay after pressing enter before sending automatically (in ms), or 0 to disable" +perl.multiline.magic_paste_only = "only use multi-line messages for multi-line pastes (multi-line on enter is disabled by this)" +perl.multiline.modify_keys = "if turned on, cursor keys are modified so that they respect line boundaries instead of treating the whole multi-line message as a single line" +perl.multiline.paste_lock = "time-out to detect pastes (disable the weechat built-in paste detection if you want to use this)" +perl.multiline.send_empty = "set to on to automatically disregard enter key on empty line" +perl.multiline.tab = "character(s) which should be displayed instead of Tab key character" +perl.multiline.weechat_paste_fix = "disable ctrl-J binding when paste is detected to stop silly weechat sending out pastes without allowing to edit them" +perl.notify_send.command = "systemcommand to be executed ($type, $name, and $messagewill be interpreted as values) (default: "notify-send $type: $name &>/dev/null")" +perl.notify_send.ignore_nicks = "comma-separated list of nicks to ignore (default: "")" +perl.notify_send.wait_highlight = "necessary time delay between highlights(seconds) for command to be executed (default: "60")" +perl.notify_send.wait_pm = "necessary time delay between private messages(seconds) for command to be executed (default: "180")" +python.apply_corrections.check_every = "Interval between each check for expired messages." +python.apply_corrections.data_timeout = "Time before a message is expired." +python.apply_corrections.message_limit = "Number of messages to store per nick." +python.apply_corrections.print_format = "Format string for the printed corrections." +python.apply_corrections.print_limit = "Maximum number of lines to correct." +python.go.auto_jump = "automatically jump to buffer when it is uniquely selected (default: "off")" +python.go.buffer_number = "display buffer number (default: "on")" +python.go.color_name = "color for buffer name (not selected) (default: "black,cyan")" +python.go.color_name_highlight = "color for highlight in buffer name (not selected) (default: "red,cyan")" +python.go.color_name_highlight_selected = "color for highlight in a selected buffer name (default: "red,brown")" +python.go.color_name_selected = "color for a selected buffer name (default: "black,brown")" +python.go.color_number = "color for buffer number (not selected) (default: "yellow,magenta")" +python.go.color_number_selected = "color for selected buffer number (default: "yellow,red")" +python.go.fuzzy_search = "search buffer matches using approximation (default: "off")" +python.go.message = "message to display before list of buffers (default: "Go to: ")" +python.go.min_chars = "Minimum chars to search and display list of matching buffers (default: "0")" +python.go.short_name = "display and search in short names instead of buffer name (default: "off")" +python.go.short_name_server = "prefix short names with server names for search and display (default: "off")" +python.go.sort = "comma-separated list of keys to sort buffers (the order is important, sorts are performed in the given order): name = sort by name (or short name), (default: "number,beginning")" +python.go.use_core_instead_weechat = "use name "core" instead of "weechat" for core buffer (default: "off")" |