mirror of
https://github.com/alrayyes/server-dotfiles
synced 2023-11-14 15:56:25 +00:00
new config
This commit is contained in:
parent
26fd7cd027
commit
2a116f1c73
@ -11,7 +11,9 @@
|
|||||||
|
|
||||||
[color]
|
[color]
|
||||||
misspelled = lightred
|
misspelled = lightred
|
||||||
suggestions = default
|
suggestion = default
|
||||||
|
suggestion_delimiter_dict = cyan
|
||||||
|
suggestion_delimiter_word = cyan
|
||||||
|
|
||||||
[check]
|
[check]
|
||||||
commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"
|
commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"
|
||||||
@ -24,4 +26,8 @@ word_min_length = 2
|
|||||||
|
|
||||||
[dict]
|
[dict]
|
||||||
|
|
||||||
|
[look]
|
||||||
|
suggestion_delimiter_dict = " / "
|
||||||
|
suggestion_delimiter_word = ","
|
||||||
|
|
||||||
[option]
|
[option]
|
||||||
|
36
weechat/.weechat/buflist.conf
Normal file
36
weechat/.weechat/buflist.conf
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
#
|
||||||
|
# weechat -- buflist.conf
|
||||||
|
#
|
||||||
|
# WARNING: It is NOT recommended to edit this file by hand,
|
||||||
|
# especially if WeeChat is running.
|
||||||
|
#
|
||||||
|
# Use /set or similar command to change settings in WeeChat.
|
||||||
|
#
|
||||||
|
# For more info, see: https://weechat.org/doc/quickstart
|
||||||
|
#
|
||||||
|
|
||||||
|
[look]
|
||||||
|
display_conditions = "${buffer.hidden}==0"
|
||||||
|
enabled = on
|
||||||
|
mouse_jump_visited_buffer = off
|
||||||
|
mouse_move_buffer = on
|
||||||
|
mouse_wheel = on
|
||||||
|
nick_prefix = off
|
||||||
|
nick_prefix_empty = on
|
||||||
|
signals_refresh = ""
|
||||||
|
sort = "number,-active"
|
||||||
|
|
||||||
|
[format]
|
||||||
|
buffer = "${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"
|
||||||
|
buffer_current = "${color:,blue}${format_buffer}"
|
||||||
|
hotlist = " ${color:green}(${hotlist}${color:green})"
|
||||||
|
hotlist_highlight = "${color:magenta}"
|
||||||
|
hotlist_low = "${color:white}"
|
||||||
|
hotlist_message = "${color:brown}"
|
||||||
|
hotlist_none = "${color:default}"
|
||||||
|
hotlist_private = "${color:green}"
|
||||||
|
hotlist_separator = "${color:default},"
|
||||||
|
indent = " "
|
||||||
|
lag = " ${color:green}[${color:brown}${lag}${color:green}]"
|
||||||
|
nick_prefix = "${color_nick_prefix}${nick_prefix}"
|
||||||
|
number = "${color:green}${number}${if:${number_displayed}?.: }"
|
@ -54,4 +54,3 @@ download_timeout = 30
|
|||||||
hold = ""
|
hold = ""
|
||||||
path = "%h/script"
|
path = "%h/script"
|
||||||
url = "http://weechat.org/files/plugins.xml.gz"
|
url = "http://weechat.org/files/plugins.xml.gz"
|
||||||
url_force_https = on
|
|
||||||
|
@ -208,6 +208,7 @@ base_word_until_cursor = on
|
|||||||
command_inline = on
|
command_inline = on
|
||||||
default_template = "%(nicks)|%(irc_channels)"
|
default_template = "%(nicks)|%(irc_channels)"
|
||||||
nick_add_space = on
|
nick_add_space = on
|
||||||
|
nick_case_sensitive = off
|
||||||
nick_completer = ":"
|
nick_completer = ":"
|
||||||
nick_first_only = off
|
nick_first_only = off
|
||||||
nick_ignore_chars = "[]`_-^"
|
nick_ignore_chars = "[]`_-^"
|
||||||
@ -254,6 +255,20 @@ buffers.separator = on
|
|||||||
buffers.size = 0
|
buffers.size = 0
|
||||||
buffers.size_max = 0
|
buffers.size_max = 0
|
||||||
buffers.type = root
|
buffers.type = root
|
||||||
|
buflist.color_bg = default
|
||||||
|
buflist.color_delim = default
|
||||||
|
buflist.color_fg = default
|
||||||
|
buflist.conditions = ""
|
||||||
|
buflist.filling_left_right = vertical
|
||||||
|
buflist.filling_top_bottom = columns_vertical
|
||||||
|
buflist.hidden = off
|
||||||
|
buflist.items = "buflist"
|
||||||
|
buflist.position = left
|
||||||
|
buflist.priority = 0
|
||||||
|
buflist.separator = on
|
||||||
|
buflist.size = 0
|
||||||
|
buflist.size_max = 0
|
||||||
|
buflist.type = root
|
||||||
input.color_bg = default
|
input.color_bg = default
|
||||||
input.color_delim = cyan
|
input.color_delim = cyan
|
||||||
input.color_fg = default
|
input.color_fg = default
|
||||||
@ -594,6 +609,8 @@ meta2-D = "/cursor move left"
|
|||||||
[key_mouse]
|
[key_mouse]
|
||||||
@bar(buffers):ctrl-wheeldown = "hsignal:buffers_mouse"
|
@bar(buffers):ctrl-wheeldown = "hsignal:buffers_mouse"
|
||||||
@bar(buffers):ctrl-wheelup = "hsignal:buffers_mouse"
|
@bar(buffers):ctrl-wheelup = "hsignal:buffers_mouse"
|
||||||
|
@bar(buflist):ctrl-wheeldown = "hsignal:buflist_mouse"
|
||||||
|
@bar(buflist):ctrl-wheelup = "hsignal:buflist_mouse"
|
||||||
@bar(input):button2 = "/input grab_mouse_area"
|
@bar(input):button2 = "/input grab_mouse_area"
|
||||||
@bar(nicklist):button1-gesture-down = "/bar scroll nicklist ${_window_number} +100%"
|
@bar(nicklist):button1-gesture-down = "/bar scroll nicklist ${_window_number} +100%"
|
||||||
@bar(nicklist):button1-gesture-down-long = "/bar scroll nicklist ${_window_number} e"
|
@bar(nicklist):button1-gesture-down-long = "/bar scroll nicklist ${_window_number} e"
|
||||||
@ -610,6 +627,8 @@ meta2-D = "/cursor move left"
|
|||||||
@item(buffer_nicklist):button2-gesture-left = "/window ${_window_number};/ban ${nick}"
|
@item(buffer_nicklist):button2-gesture-left = "/window ${_window_number};/ban ${nick}"
|
||||||
@item(buffers):button1* = "hsignal:buffers_mouse"
|
@item(buffers):button1* = "hsignal:buffers_mouse"
|
||||||
@item(buffers):button2* = "hsignal:buffers_mouse"
|
@item(buffers):button2* = "hsignal:buffers_mouse"
|
||||||
|
@item(buflist):button1* = "hsignal:buflist_mouse"
|
||||||
|
@item(buflist):button2* = "hsignal:buflist_mouse"
|
||||||
@bar:wheeldown = "/bar scroll ${_bar_name} ${_window_number} +20%"
|
@bar:wheeldown = "/bar scroll ${_bar_name} ${_window_number} +20%"
|
||||||
@bar:wheelup = "/bar scroll ${_bar_name} ${_window_number} -20%"
|
@bar:wheelup = "/bar scroll ${_bar_name} ${_window_number} -20%"
|
||||||
@chat:button1 = "/window ${_window_number}"
|
@chat:button1 = "/window ${_window_number}"
|
||||||
|
Loading…
Reference in New Issue
Block a user