diff options
Diffstat (limited to '.weechat/weechat.conf')
-rw-r--r-- | .weechat/weechat.conf | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/.weechat/weechat.conf b/.weechat/weechat.conf index ce5802e..fbacab7 100644 --- a/.weechat/weechat.conf +++ b/.weechat/weechat.conf @@ -4,7 +4,7 @@ # 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. +# Use commands like /set or /fset to change settings in WeeChat. # # For more info, see: https://weechat.org/doc/quickstart # @@ -35,6 +35,7 @@ buffer_search_force_default = off buffer_search_regex = off buffer_search_where = prefix_message buffer_time_format = "%H:%M:%S" +buffer_time_same = "" color_basic_force_bold = off color_inactive_buffer = on color_inactive_message = on @@ -71,6 +72,7 @@ hotlist_short_names = on hotlist_sort = group_time_asc hotlist_suffix = "" hotlist_unique_numbers = on +hotlist_update_on_buffer_switch = on input_cursor_scroll = 20 input_share = none input_share_overwrite = off @@ -89,6 +91,7 @@ mouse = on mouse_timer_delay = 100 nick_color_force = "" nick_color_hash = djb2 +nick_color_hash_salt = "" nick_color_stop_chars = "_|[" nick_prefix = "" nick_suffix = "" @@ -111,6 +114,7 @@ prefix_join = "-->" prefix_network = "--" prefix_quit = "<--" prefix_same_nick = "" +prefix_same_nick_middle = "" prefix_suffix = "|" quote_nick_prefix = "<" quote_nick_suffix = ">" @@ -118,6 +122,7 @@ quote_time_format = "%H:%M:%S" read_marker = line read_marker_always_show = off read_marker_string = "- " +read_marker_update_on_buffer_switch = on save_config_on_exit = on save_config_with_fsync = off save_layout_on_exit = none @@ -231,7 +236,8 @@ max_visited_buffers = 50 [network] connection_timeout = 60 -gnutls_ca_file = "/etc/ssl/certs/ca-certificates.crt" +gnutls_ca_system = on +gnutls_ca_user = "" gnutls_handshake_timeout = 30 proxy_curl = "" @@ -242,8 +248,16 @@ extension = ".so,.dll" path = "%h/plugins" save_config_on_unload = on +[signal] +sighup = "${if:${info:weechat_headless}?/reload:/quit -yes}" +sigquit = "/quit -yes" +sigterm = "/quit -yes" +sigusr1 = "" +sigusr2 = "" + [bar] buflist.color_bg = default +buflist.color_bg_inactive = default buflist.color_delim = default buflist.color_fg = default buflist.conditions = "" @@ -258,6 +272,7 @@ buflist.size = 0 buflist.size_max = 0 buflist.type = root fset.color_bg = default +fset.color_bg_inactive = default fset.color_delim = cyan fset.color_fg = default fset.conditions = "${buffer.full_name} == fset.fset" @@ -272,6 +287,7 @@ fset.size = 3 fset.size_max = 3 fset.type = window input.color_bg = default +input.color_bg_inactive = default input.color_delim = cyan input.color_fg = default input.conditions = "" @@ -286,6 +302,7 @@ input.size = 1 input.size_max = 0 input.type = window nicklist.color_bg = default +nicklist.color_bg_inactive = default nicklist.color_delim = cyan nicklist.color_fg = default nicklist.conditions = "${nicklist}" @@ -300,6 +317,7 @@ nicklist.size = 0 nicklist.size_max = 0 nicklist.type = window status.color_bg = blue +status.color_bg_inactive = default status.color_delim = cyan status.color_fg = default status.conditions = "" @@ -314,6 +332,7 @@ status.size = 1 status.size_max = 0 status.type = window title.color_bg = blue +title.color_bg_inactive = default title.color_delim = cyan title.color_fg = default title.conditions = "" @@ -395,6 +414,7 @@ meta-9 = "/buffer *9" meta-< = "/input jump_previously_visited_buffer" meta-= = "/filter toggle" meta-> = "/input jump_next_visited_buffer" +meta-B = "/buflist toggle" meta-OA = "/input history_global_previous" meta-OB = "/input history_global_next" meta-OC = "/input move_next_word" |