From: Ben Beltran Date: Thu, 14 Mar 2019 22:17:28 +0000 (+0100) Subject: Merge branch 'master' of gitlab.com:rbdr/dotfiles X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/commitdiff_plain/e7572a53051b96e0d428111831c7abc5d24cb468?hp=8bd7cd0472f56234ea851bde7300b112affd2776 Merge branch 'master' of gitlab.com:rbdr/dotfiles --- diff --git a/.gitignore b/.gitignore index 85d5ac3..d85cf15 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store vim/.backup weechat/logs +weechat/weechat.log tmuxp diff --git a/.gitmodules b/.gitmodules index 952c621..af24917 100644 --- a/.gitmodules +++ b/.gitmodules @@ -56,6 +56,9 @@ [submodule "vim/bundle/syntastic-local-eslint"] path = vim/bundle/syntastic-local-eslint url = https://github.com/mtscout6/syntastic-local-eslint.vim.git +[submodule "vim/bundle/vim-vue"] + path = vim/bundle/vim-vue + url = https://github.com/posva/vim-vue [submodule "vim/bundle/ale"] path = vim/bundle/ale url = https://github.com/w0rp/ale diff --git a/ackrc b/ackrc deleted file mode 100644 index 6b7d5e9..0000000 --- a/ackrc +++ /dev/null @@ -1,15 +0,0 @@ ---type-add=html=.haml ---type-add=css=.sass,.scss,.less ---type-add=js=.rjs,.coffee ---type-add=ruby=.erb ---ignore-dir=vendor ---ignore-dir=log ---ignore-dir=tmp ---ignore-dir=doc ---ignore-dir=public/system ---ignore-dir=asset_packages ---ignore-dir=node_modules ---sort-files ---color ---follow ---group diff --git a/agignore b/agignore deleted file mode 100644 index 9e78616..0000000 --- a/agignore +++ /dev/null @@ -1,5 +0,0 @@ -tmp -public/system -asset_packages -node_modules -*.min.js diff --git a/bash_profile b/bash_profile deleted file mode 100644 index df81cbe..0000000 --- a/bash_profile +++ /dev/null @@ -1,85 +0,0 @@ -export PATH=/usr/local/bin:/usr/local/sbin:$PATH -export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH - -#Java HOME Adition -export JAVA_HOME=$(/usr/libexec/java_home) - -export TERM=screen-256color - -#git function -function _set_git_envar_info() { - GIT_BRANCH="" - GIT_PREFIX="" - GIT_STATE="" - CHECK_SHIT="lol" - RVM_COMMAND=$(rvm-prompt) - if [[ $RVM_COMMAND == "" ]] - then - RVM_COMMAND="system" - fi - if [ -f `which git` ]; - then - local STATUS - STATUS=$(git status 2>/dev/null) - if [[ -z $STATUS ]] - then - return - fi - GIT_BRANCH="$(git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')" - if [[ -n "$GIT_BRANCH" ]] - then - GIT_PREFIX=" on " - fi - if [[ "$STATUS" == *'working directory clean'* ]] - then - GIT_STATE="" - else - GIT_STATE="" - if [[ "$STATUS" == *'Changes to be committed:'* ]] - then - GIT_STATE='!' # Index has files staged for commit - fi - if [[ "$STATUS" == *'Changed but not updated:'* ]] - then - GIT_STATE="?" # Working tree has files modified but unstaged - fi - if [[ "$STATUS" == *'Untracked files:'* ]] - then - GIT_STATE='?' # Working tree has untracked files - fi - fi - fi -} - -export -f _set_git_envar_info - -#this thing for my prompt. -export PROMPT_COMMAND="_set_git_envar_info" -export PS1='\[\e[0;31m\]\u\[\e[0m\] at \[\e[0;33m\]\h\[\e[0m\] in \[\e[0;32m\]\w\[\e[0m\]$GIT_PREFIX\[\e[1;34m\]$GIT_BRANCH\[\e[0m\]\[\e[0;32m\]$GIT_STATE \[\e[0;30m\]($RVM_COMMAND) \[\e[0m\] \n\$ ' - -#display fortune when I start -echo -e "\033[30m" -/usr/local/bin/fortune -echo -e "\033[m" - -#Editor. -export EDITOR="vim" -export VISUAL="vim" - -#some aliases. -alias dwarffortress="/Applications/Dwarf\ Fortress/df" -alias ls="ls -FG" -alias rspec="rspec --color" - -#Git utility aliases -alias gpsc="git push origin $GIT_BRANCH" -alias gplc="git pull origin $GIT_BRANCH" - -#Enable Bash Completion -if [ -f `brew --prefix`/etc/bash_completion ]; then - . `brew --prefix`/etc/bash_completion -fi - -#Screeninator and RVM scripts -[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm - diff --git a/status-left.sh b/status-left.sh deleted file mode 100755 index 21727cf..0000000 --- a/status-left.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env bash -#Print the status-left for tmux. -# -# The powerline root directory. -cwd=$(dirname $0) - -# Source global configurations. -source "${cwd}/config.sh" - -# Source lib functions. -source "${cwd}/lib.sh" - -segments_path="${cwd}/${segments_dir}" - -# Mute this statusbar? -mute_status_check "left" - -# Segments -declare -A tmux_session_info -tmux_session_info+=(["script"]="${segments_path}/tmux_session_info.sh") -tmux_session_info+=(["foreground"]="colour7") -tmux_session_info+=(["background"]="colour12") -tmux_session_info+=(["separator"]="${separator_right_bold}") -#tmux_session_info+=(["separator_fg"]="default") -register_segment "tmux_session_info" - -declare -A hostname -hostname+=(["script"]="${segments_path}/hostname.sh") -hostname+=(["foreground"]="colour7") -hostname+=(["background"]="colour1") -hostname+=(["separator"]="${separator_right_bold}") -register_segment "hostname" - -declare -A lan_ip -lan_ip+=(["script"]="${segments_path}/lan_ip.sh") -lan_ip+=(["foreground"]="colour7") -lan_ip+=(["background"]="colour24") -lan_ip+=(["separator"]="${separator_right_bold}") -#register_segment "lan_ip" - -declare -A vcs_branch -vcs_branch+=(["script"]="${segments_path}/vcs_branch.sh") -vcs_branch+=(["foreground"]="colour12") -vcs_branch+=(["background"]="colour7") -vcs_branch+=(["separator"]="${separator_right_bold}") -register_segment "vcs_branch" - -# Print the status line in the order of registration above. -print_status_line_left - -exit 0 diff --git a/status-right.sh b/status-right.sh deleted file mode 100755 index da59f8c..0000000 --- a/status-right.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/usr/bin/env bash -# This script prints a string will be evaluated for text attributes (but not shell commands) by tmux. It consists of a bunch of segments that are simple shell scripts/programs that output the information to show. For each segment the desired foreground and background color can be specified as well as what separator to use. The script the glues together these segments dynamically so that if one script suddenly does not output anything (= nothing should be shown) the separator colors will be nicely handled. - -# The powerline root directory. -cwd=$(dirname $0) - -# Source global configurations. -source "${cwd}/config.sh" - -# Source lib functions. -source "${cwd}/lib.sh" - -segments_path="${cwd}/${segments_dir}" - -# Mute this statusbar? -mute_status_check "right" - -# Segment -# Comment/uncomment the register function call to enable or disable a segment. - -declare -A pwd -pwd+=(["script"]="${segments_path}/pwd.sh") -pwd+=(["foreground"]="colour211") -pwd+=(["background"]="colour89") -pwd+=(["separator"]="${separator_left_bold}") -#register_segment "pwd" - -declare -A load -load+=(["script"]="${segments_path}/load.sh") -load+=(["foreground"]="colour7") -load+=(["background"]="colour0") -load+=(["separator"]="${separator_left_bold}") -register_segment "load" - -declare -A battery -if [ "$PLATFORM" == "mac" ]; then - battery+=(["script"]="${segments_path}/battery_mac.sh") -else - battery+=(["script"]="${segments_path}/battery.sh") -fi -battery+=(["foreground"]="colour7") -battery+=(["background"]="colour1") -battery+=(["separator"]="${separator_left_bold}") -#register_segment "battery" - -declare -A weather -weather+=(["script"]="${segments_path}/weather_yahoo.sh") -#weather+=(["script"]="${segments_path}/weather_google.sh") -weather+=(["foreground"]="colour7") -weather+=(["background"]="colour12") -weather+=(["separator"]="${separator_left_bold}") -register_segment "weather" - -declare -A date_day -date_day+=(["script"]="${segments_path}/date_day.sh") -date_day+=(["foreground"]="colour0") -date_day+=(["background"]="colour7") -date_day+=(["separator"]="${separator_left_bold}") -register_segment "date_day" - -declare -A date_full -date_full+=(["script"]="${segments_path}/date_full.sh") -date_full+=(["foreground"]="colour0") -date_full+=(["background"]="colour15") -date_full+=(["separator"]="${separator_left_thin}") -date_full+=(["separator_fg"]="colour0") -register_segment "date_full" - -declare -A time -time+=(["script"]="${segments_path}/time.sh") -time+=(["foreground"]="colour0") -time+=(["background"]="colour7") -time+=(["separator"]="${separator_left_thin}") -time+=(["separator_fg"]="colour0") -register_segment "time" - -# Print the status line in the order of registration above. -print_status_line_right - -exit 0 diff --git a/vim/bundle/vim-vue b/vim/bundle/vim-vue new file mode 160000 index 0000000..e306929 --- /dev/null +++ b/vim/bundle/vim-vue @@ -0,0 +1 @@ +Subproject commit e306929b27bea08ab505de7a4617e642b56b6dcd diff --git a/weechat/alias.conf b/weechat/alias.conf index 81df71a..1e56811 100644 --- a/weechat/alias.conf +++ b/weechat/alias.conf @@ -1,5 +1,12 @@ # -# alias.conf -- weechat v0.3.8 +# weechat -- alias.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 # [cmd] diff --git a/weechat/aspell.conf b/weechat/aspell.conf index e122f1c..27b16b8 100644 --- a/weechat/aspell.conf +++ b/weechat/aspell.conf @@ -1,17 +1,33 @@ # -# aspell.conf -- weechat v0.3.8 +# weechat -- aspell.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] -color = lightred +[color] +misspelled = lightred +suggestion = default +suggestion_delimiter_dict = cyan +suggestion_delimiter_word = cyan [check] commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic" default_dict = "" during_search = off +enabled = off real_time = off +suggestions = -1 word_min_length = 2 [dict] +[look] +suggestion_delimiter_dict = " / " +suggestion_delimiter_word = "," + [option] diff --git a/weechat/buffers.conf b/weechat/buffers.conf index 8cb4586..5893919 100644 --- a/weechat/buffers.conf +++ b/weechat/buffers.conf @@ -1,5 +1,12 @@ # -# buffers.conf -- weechat v0.3.8 +# weechat -- buffers.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 # [color] diff --git a/weechat/buflist.conf b/weechat/buflist.conf new file mode 100644 index 0000000..d285f89 --- /dev/null +++ b/weechat/buflist.conf @@ -0,0 +1,39 @@ +# +# 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] +add_newline = on +auto_scroll = 50 +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}${format_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}]" +name = "${name}" +nick_prefix = "${color_nick_prefix}${nick_prefix}" +number = "${color:green}${number}${if:${number_displayed}?.: }" diff --git a/weechat/charset.conf b/weechat/charset.conf new file mode 100644 index 0000000..00d304c --- /dev/null +++ b/weechat/charset.conf @@ -0,0 +1,18 @@ +# +# weechat -- charset.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 +# + +[default] +decode = "iso-8859-1" +encode = "" + +[decode] + +[encode] diff --git a/weechat/exec.conf b/weechat/exec.conf new file mode 100644 index 0000000..db02a5b --- /dev/null +++ b/weechat/exec.conf @@ -0,0 +1,19 @@ +# +# weechat -- exec.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 +# + +[command] +default_options = "" +purge_delay = 0 +shell = "sh" + +[color] +flag_finished = lightred +flag_running = lightgreen diff --git a/weechat/fifo.conf b/weechat/fifo.conf new file mode 100644 index 0000000..904985d --- /dev/null +++ b/weechat/fifo.conf @@ -0,0 +1,14 @@ +# +# weechat -- fifo.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 +# + +[file] +enabled = on +path = "%h/weechat_fifo" diff --git a/weechat/fset.conf b/weechat/fset.conf new file mode 100644 index 0000000..668266c --- /dev/null +++ b/weechat/fset.conf @@ -0,0 +1,95 @@ +# +# weechat -- fset.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] +auto_unmark = off +condition_catch_set = "${count} >= 1" +export_help_default = on +format_number = 1 +marked_string = "*" +scroll_horizontal = 10 +show_plugins_desc = off +sort = "~name" +unmarked_string = " " +use_color_value = off +use_keys = on +use_mute = off + +[format] +export_help = "# ${description2}" +export_option = "/set ${name} ${quoted_value}" +export_option_null = "/unset ${name}" +option1 = "" +option2 = "${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}" + +[color] +default_value = default +default_value_selected = white +description = default +description_selected = white +file = default +file_changed = brown +file_changed_selected = yellow +file_selected = white +help_default_value = white +help_description = default +help_name = white +help_quotes = darkgray +help_values = default +index = cyan +index_selected = lightcyan +line_marked_bg1 = default +line_marked_bg2 = default +line_selected_bg1 = blue +line_selected_bg2 = red +marked = brown +marked_selected = yellow +max = default +max_selected = white +min = default +min_selected = white +name = default +name_changed = brown +name_changed_selected = yellow +name_selected = white +option = default +option_changed = brown +option_changed_selected = yellow +option_selected = white +parent_name = default +parent_name_selected = white +parent_value = cyan +parent_value_selected = lightcyan +quotes = darkgray +quotes_changed = default +quotes_changed_selected = white +quotes_selected = default +section = default +section_changed = brown +section_changed_selected = yellow +section_selected = white +string_values = default +string_values_selected = white +title_count_options = cyan +title_current_option = lightcyan +title_filter = yellow +title_marked_options = lightgreen +title_sort = white +type = green +type_selected = lightgreen +unmarked = default +unmarked_selected = white +value = cyan +value_changed = brown +value_changed_selected = yellow +value_selected = lightcyan +value_undef = magenta +value_undef_selected = lightmagenta diff --git a/weechat/irc.conf b/weechat/irc.conf index c3c2dfb..6562ddb 100644 --- a/weechat/irc.conf +++ b/weechat/irc.conf @@ -1,14 +1,24 @@ # -# irc.conf -- weechat v0.3.8 +# weechat -- irc.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] +buffer_open_before_autojoin = on +buffer_open_before_join = off buffer_switch_autojoin = on buffer_switch_join = on color_nicks_in_names = off color_nicks_in_nicklist = off color_nicks_in_server_messages = on color_pv_nick_like_channel = on +ctcp_time_format = "%a, %d %b %Y %T %z" display_away = local display_ctcp_blocked = on display_ctcp_reply = on @@ -16,70 +26,81 @@ display_ctcp_unknown = on display_host_join = on display_host_join_local = on display_host_quit = on +display_join_message = "329,332,333,366" display_old_topic = on display_pv_away_once = on display_pv_back = on -hide_nickserv_pwd = on highlight_channel = "$nick" highlight_pv = "$nick" highlight_server = "$nick" -highlight_tags = "irc_privmsg,irc_notice" -item_away_message = on -item_channel_modes = on -item_channel_modes_hide_key = off +highlight_tags_restrict = "irc_privmsg,irc_notice" +item_channel_modes_hide_args = "k" item_display_server = buffer_plugin item_nick_modes = on item_nick_prefix = on +join_auto_add_chantype = off msgbuffer_fallback = current new_channel_position = none new_pv_position = none -nick_color_force = "" -nick_color_stop_chars = "_|[" nick_completion_smart = speakers -nick_prefix = "" -nick_suffix = "" +nick_mode = prefix +nick_mode_empty = off +nicks_hide_password = "nickserv" notice_as_pv = auto +notice_welcome_redirect = on +notice_welcome_tags = "" notify_tags_ison = "notify_message" notify_tags_whois = "notify_message" part_closes_buffer = off +pv_buffer = independent +pv_tags = "notify_private" raw_messages = 256 server_buffer = merge_with_core smart_filter = on +smart_filter_chghost = on smart_filter_delay = 5 smart_filter_join = on +smart_filter_join_unmask = 30 +smart_filter_mode = "+" smart_filter_nick = on smart_filter_quit = on +temporary_servers = off topic_strip_colors = off [color] input_nick = lightcyan -item_away = yellow item_channel_modes = default item_lag_counting = default item_lag_finished = yellow +item_nick_modes = default +message_chghost = brown message_join = green message_quit = red mirc_remap = "1,-1:darkgray" -nick_prefix = green nick_prefixes = "q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue" -nick_suffix = green notice = green reason_quit = default +topic_current = default topic_new = white topic_old = darkgray [network] autoreconnect_delay_growing = 2 autoreconnect_delay_max = 1800 +ban_mask_default = "*!$ident@$host" +channel_encode = off colors_receive = on colors_send = on lag_check = 60 -lag_disconnect = 0 +lag_max = 1800 lag_min_show = 500 +lag_reconnect = 300 lag_refresh_interval = 1 notify_check_ison = 1 notify_check_whois = 5 +sasl_fail_unavailable = on send_unknown_commands = off +whois_double_nick = off [msgbuffer] @@ -103,25 +124,32 @@ capabilities = "" command = "" command_delay = 0 connection_timeout = 60 -default_msg_part = "WeeChat %v" -default_msg_quit = "WeeChat %v" ipv6 = off local_hostname = "" -nicks = "benbeltran,bonboltron,banbaltran,benbeltren,binbiltrin,bunbultrun" +msg_kick = "" +msg_part = "WeeChat ${info:version}" +msg_quit = "WeeChat ${info:version}" +nicks = "rbdr,rbdr182,rbdr666,rbdr9000,rdbr" +nicks_alternate = on notify = "" password = "" proxy = "" realname = "" +sasl_fail = continue +sasl_key = "" sasl_mechanism = plain sasl_password = "" sasl_timeout = 15 sasl_username = "" +split_msg_max_length = 512 ssl = off ssl_cert = "" ssl_dhkey_size = 2048 +ssl_fingerprint = "" ssl_priorities = "NORMAL" ssl_verify = on -username = "benbeltran" +usermode = "" +username = "rbdr" [server] freenode.addresses = "chat.freenode.net/6667" @@ -131,23 +159,28 @@ freenode.ssl freenode.ssl_cert freenode.ssl_priorities freenode.ssl_dhkey_size +freenode.ssl_fingerprint freenode.ssl_verify freenode.password freenode.capabilities freenode.sasl_mechanism freenode.sasl_username freenode.sasl_password +freenode.sasl_key freenode.sasl_timeout +freenode.sasl_fail freenode.autoconnect freenode.autoreconnect freenode.autoreconnect_delay freenode.nicks +freenode.nicks_alternate freenode.username freenode.realname freenode.local_hostname -freenode.command = "/msg nickserv identify radicalo" +freenode.usermode +freenode.command = "" freenode.command_delay -freenode.autojoin = "#freshout-dev" +freenode.autojoin = "" freenode.autorejoin freenode.autorejoin_delay freenode.connection_timeout @@ -155,9 +188,11 @@ freenode.anti_flood_prio_high freenode.anti_flood_prio_low freenode.away_check freenode.away_check_max_nicks -freenode.default_msg_part -freenode.default_msg_quit +freenode.msg_kick +freenode.msg_part +freenode.msg_quit freenode.notify +freenode.split_msg_max_length QuakeNet.addresses = "gameservers.nj.us.quakenet.org/6667" QuakeNet.proxy QuakeNet.ipv6 @@ -165,23 +200,28 @@ QuakeNet.ssl QuakeNet.ssl_cert QuakeNet.ssl_priorities QuakeNet.ssl_dhkey_size +QuakeNet.ssl_fingerprint QuakeNet.ssl_verify QuakeNet.password QuakeNet.capabilities QuakeNet.sasl_mechanism QuakeNet.sasl_username QuakeNet.sasl_password +QuakeNet.sasl_key QuakeNet.sasl_timeout +QuakeNet.sasl_fail QuakeNet.autoconnect QuakeNet.autoreconnect QuakeNet.autoreconnect_delay QuakeNet.nicks +QuakeNet.nicks_alternate QuakeNet.username QuakeNet.realname QuakeNet.local_hostname +QuakeNet.usermode QuakeNet.command QuakeNet.command_delay -QuakeNet.autojoin = "#destructoid,#abuguet" +QuakeNet.autojoin = "" QuakeNet.autorejoin QuakeNet.autorejoin_delay QuakeNet.connection_timeout @@ -189,6 +229,8 @@ QuakeNet.anti_flood_prio_high QuakeNet.anti_flood_prio_low QuakeNet.away_check QuakeNet.away_check_max_nicks -QuakeNet.default_msg_part -QuakeNet.default_msg_quit +QuakeNet.msg_kick +QuakeNet.msg_part +QuakeNet.msg_quit QuakeNet.notify +QuakeNet.split_msg_max_length diff --git a/weechat/iset.conf b/weechat/iset.conf index 33fb1f1..ab8b7a2 100644 --- a/weechat/iset.conf +++ b/weechat/iset.conf @@ -1,5 +1,12 @@ # -# iset.conf -- weechat v0.3.8 +# weechat -- iset.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 # [color] diff --git a/weechat/logger.conf b/weechat/logger.conf index dfc8c91..36d9243 100644 --- a/weechat/logger.conf +++ b/weechat/logger.conf @@ -1,9 +1,17 @@ # -# logger.conf -- weechat v0.3.8 +# weechat -- logger.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] backlog = 20 +backlog_conditions = "" [color] backlog_end = darkgray @@ -12,9 +20,12 @@ backlog_line = darkgray [file] auto_log = on flush_delay = 120 +fsync = off info_lines = off mask = "$plugin.$name.weechatlog" name_lower_case = on +nick_prefix = "" +nick_suffix = "" path = "%h/logs/" replacement_char = "_" time_format = "%Y-%m-%d %H:%M:%S" diff --git a/weechat/logs/core.weechat.weechatlog b/weechat/logs/core.weechat.weechatlog deleted file mode 100644 index f1e2687..0000000 --- a/weechat/logs/core.weechat.weechatlog +++ /dev/null @@ -1,1385 +0,0 @@ -2012-02-29 10:48:19 Plugins loaded: alias, fifo, irc, logger, lua, relay, rmodifier, tcl, xfer -2012-02-29 10:48:40 irc: server QuakeNet created -2012-02-29 10:48:43 All servers: -2012-02-29 10:48:43 freenode -2012-02-29 10:48:43 QuakeNet -2012-02-29 10:49:01 irc: server quakenet created (temporary server, NOT SAVED!) -2012-02-29 10:50:15 =!= Error: unknown command "network" (type /help for help) -2012-02-29 10:50:17 All servers: -2012-02-29 10:50:17 * freenode [connected], 0 channels, 0 pv -2012-02-29 10:50:17 QuakeNet -2012-02-29 10:50:17 quakenet (temporary) -2012-02-29 10:51:05 Plugins loaded: alias, fifo, irc, logger, lua, relay, rmodifier, tcl, xfer -2012-02-29 10:51:09 =!= Error: unknown command "servers" (type /help for help) -2012-02-29 10:51:12 All servers: -2012-02-29 10:51:12 freenode -2012-02-29 10:51:12 QuakeNet -2012-02-29 10:51:31 Plugins loaded: alias, fifo, irc, logger, lua, relay, rmodifier, tcl, xfer -2012-02-29 10:51:41 =!= irc: unknown option for "server" command -2012-02-29 10:51:44 All servers: -2012-02-29 10:51:44 freenode -2012-02-29 10:51:44 QuakeNet -2012-02-29 10:51:48 =!= irc: unknown option for "server" command -2012-02-29 10:52:10 =!= irc: server "QuakeNet" already exists, can't create it! -2012-02-29 10:52:17 =!= Error: unknown command "irc" (type /help for help) -2012-02-29 10:52:22 =!= irc: unknown option for "server" command -2012-02-29 10:52:27 [irc] /server list|listfull [] -2012-02-29 10:52:27 add [/] [-temp] [-