sync
This commit is contained in:
parent
ae763be668
commit
346b814105
6 changed files with 18 additions and 11 deletions
|
@ -32,7 +32,7 @@
|
|||
|
||||
[diff]
|
||||
algorithm = patience
|
||||
external = difft
|
||||
external = difft
|
||||
|
||||
[sendemail]
|
||||
smtpserver = /usr/bin/msmtp
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
hc() { herbstclient "$@" ;}
|
||||
hc() {
|
||||
t="$EPOCHREALTIME"
|
||||
herbstclient "$@"
|
||||
t2="$EPOCHREALTIME"
|
||||
echo "hc: $( bc<<<"$t2 - $t")" >&2
|
||||
}
|
||||
panel_height=18
|
||||
# bgcolor=$(hc get frame_border_normal_color)
|
||||
# selbg=$(hc get window_border_active_color)
|
||||
|
@ -160,7 +165,7 @@ hc --idle | {
|
|||
;;
|
||||
player)
|
||||
# declare -A player_status
|
||||
if [[ "${cmd[1]}" = cmus ]]
|
||||
if [[ "${cmd[1]}" = cmus ]] || [[ "${cmd[1]}" = mpd ]]
|
||||
then
|
||||
play_line=" ${cmd[3]:0:20}/${cmd[4]:0:20}"
|
||||
[[ -n ${cmd[5]} ]] && play_line="$play_line: ${cmd[5]:0:20}"
|
||||
|
|
|
@ -18,7 +18,7 @@ function M.setup()
|
|||
close_if_last_window = false, -- Close Neo-tree if it is the last window left in the tab
|
||||
popup_border_style = "rounded",
|
||||
enable_git_status = true,
|
||||
enable_diagnostics = true,
|
||||
enable_diagnostics = false,
|
||||
sort_case_insensitive = false, -- used when sorting files and directories in the tree
|
||||
sort_function = nil, -- use a custom function for sorting files and directories in the tree
|
||||
-- sort_function = function (a,b)
|
||||
|
@ -176,7 +176,7 @@ function M.setup()
|
|||
["<bs>"] = "navigate_up",
|
||||
["."] = "set_root",
|
||||
["H"] = "toggle_hidden",
|
||||
["/"] = "fuzzy_finder",
|
||||
["/"] = "noop",
|
||||
["D"] = "fuzzy_finder_directory",
|
||||
["f"] = "filter_on_submit",
|
||||
["<c-x>"] = "clear_filter",
|
||||
|
|
|
@ -13,6 +13,7 @@ CombinedUpgrade
|
|||
#CleanAfter
|
||||
#UpgradeMenu
|
||||
NewsOnUpgrade
|
||||
BatchInstall
|
||||
|
||||
LocalRepo = paru
|
||||
Chroot
|
||||
|
@ -23,7 +24,8 @@ Chroot
|
|||
#
|
||||
# Binary OPTIONS
|
||||
#
|
||||
#[bin]
|
||||
[bin]
|
||||
#FileManager = vifm
|
||||
#MFlags = --skippgpcheck
|
||||
#Sudo = doas
|
||||
Pager=less
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[global]
|
||||
error_log = /proc/self/fd/2
|
||||
error_log = /tmp/php72.log
|
||||
daemonize = no
|
||||
|
||||
[www]
|
||||
|
@ -13,7 +13,7 @@ pm.max_spare_servers = 3
|
|||
|
||||
pm.status_path = /fpm-status
|
||||
|
||||
access.log = /proc/self/fd/2
|
||||
access.log = /tmp/php72.access.log
|
||||
access.format = "%R - %u %t \"%m %r\" %s %d"
|
||||
request_terminate_timeout = 0
|
||||
|
||||
|
@ -22,5 +22,5 @@ catch_workers_output = yes
|
|||
php_admin_value[error_log] = /dev/stderr
|
||||
;php_admin_flag[log_errors] = on
|
||||
;php_admin_value[memory_limit] = 32M
|
||||
php_admin_value[sendmail_path] = {{.chezmoi.homeDir}}/bin/pipemail
|
||||
php_admin_value[sys_temp_dir] = {{.chezmoi.homeDir}}/jopixel/webserver/temp
|
||||
php_admin_value[sendmail_path] = {{ .chezmoi.homeDir }}/bin/pipemail
|
||||
php_admin_value[sys_temp_dir] = {{ .chezmoi.homeDir }}/jopixel/webserver/temp
|
||||
|
|
|
@ -57,7 +57,7 @@ source $ZSH/oh-my-zsh.sh
|
|||
# User configuration
|
||||
|
||||
export GOPATH=~/go
|
||||
export PATH=$PATH:~/bin:~/.cargo/bin:$GOPATH/bin
|
||||
export PATH=~/bin:~/.cargo/bin:$GOPATH/bin:$PATH
|
||||
#export MANPAGER="bat -p -l manpage"
|
||||
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|
||||
# export MANPATH="/usr/local/man:$MANPATH"
|
||||
|
|
Loading…
Add table
Reference in a new issue