mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
Initial commit
This commit is contained in:
commit
245a574c5b
3
dot_config/zsh/bundles.zsh
Normal file
3
dot_config/zsh/bundles.zsh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
zgenom load Aloxaf/fzf-tab
|
||||||
|
zgenom load joshskidmore/zsh-fzf-history-search
|
||||||
|
zgenom load zsh-users/zsh-syntax-highlighting
|
||||||
7
dot_config/zsh/completion/_ag
Normal file
7
dot_config/zsh/completion/_ag
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#compdef ag
|
||||||
|
|
||||||
|
if (( CURRENT == 2 )); then
|
||||||
|
compadd $(cut -f 1 tmp/tags .git/tags 2>/dev/null)
|
||||||
|
else;
|
||||||
|
_files
|
||||||
|
fi
|
||||||
72
dot_config/zsh/completion/_bundler
Normal file
72
dot_config/zsh/completion/_bundler
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
#compdef bundle
|
||||||
|
|
||||||
|
local curcontext="$curcontext" state line _gems _opts ret=1
|
||||||
|
|
||||||
|
_arguments -C -A "-v" -A "--version" \
|
||||||
|
'(- 1 *)'{-v,--version}'[display version information]' \
|
||||||
|
'1: :->cmds' \
|
||||||
|
'*:: :->args' && ret=0
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
cmds)
|
||||||
|
_values "bundle command" \
|
||||||
|
"install[Install the gems specified by the Gemfile or Gemfile.lock]" \
|
||||||
|
"update[Update dependencies to their latest versions]" \
|
||||||
|
"package[Package the .gem files required by your application]" \
|
||||||
|
"exec[Execute a script in the context of the current bundle]" \
|
||||||
|
"config[Specify and read configuration options for bundler]" \
|
||||||
|
"check[Determine whether the requirements for your application are installed]" \
|
||||||
|
"list[Show all of the gems in the current bundle]" \
|
||||||
|
"show[Show the source location of a particular gem in the bundle]" \
|
||||||
|
"console[Start an IRB session in the context of the current bundle]" \
|
||||||
|
"open[Open an installed gem in the editor]" \
|
||||||
|
"lock[Generate a lockfile for your dependencies]" \
|
||||||
|
"viz[Generate a visual representation of your dependencies]" \
|
||||||
|
"init[Generate a simple Gemfile, placed in the current directory]" \
|
||||||
|
"gem[Create a simple gem, suitable for development with bundler]" \
|
||||||
|
"help[Describe available tasks or one specific task]" \
|
||||||
|
"platform[Displays platform compatibility information]" \
|
||||||
|
"outdated[Show all of the outdated gems in the current bundle]" \
|
||||||
|
"clean[Cleans up unused gems in your bundler directory]"
|
||||||
|
ret=0
|
||||||
|
;;
|
||||||
|
args)
|
||||||
|
case $line[1] in
|
||||||
|
help)
|
||||||
|
_values 'commands' 'install' 'update' 'package' 'exec' 'config' 'check' 'list' 'show' 'console' 'open' 'lock' 'viz' 'init' 'gem' 'help' 'platform' 'outdated' 'clean' && ret=0
|
||||||
|
;;
|
||||||
|
install)
|
||||||
|
_arguments \
|
||||||
|
'(--no-color)--no-color[disable colorization in output]' \
|
||||||
|
'(--local)--local[do not attempt to connect to rubygems.org]' \
|
||||||
|
'(--quiet)--quiet[only output warnings and errors]' \
|
||||||
|
'(--gemfile)--gemfile=-[use the specified gemfile instead of Gemfile]:gemfile' \
|
||||||
|
'(--system)--system[install to the system location]' \
|
||||||
|
'(--deployment)--deployment[install using defaults tuned for deployment environments]' \
|
||||||
|
'(--frozen)--frozen[do not allow the Gemfile.lock to be updated after this install]' \
|
||||||
|
'(--path)--path=-[specify a different path than the system default]:path:_files' \
|
||||||
|
'(--binstubs)--binstubs=-[generate bin stubs for bundled gems to ./bin]:directory:_files' \
|
||||||
|
'(--without)--without=-[exclude gems that are part of the specified named group]:groups'
|
||||||
|
ret=0
|
||||||
|
;;
|
||||||
|
exec)
|
||||||
|
_normal && ret=0
|
||||||
|
;;
|
||||||
|
(open|show)
|
||||||
|
_gems=( $(bundle show 2> /dev/null | sed -e '/^ \*/!d; s/^ \* \([^ ]*\) .*/\1/') )
|
||||||
|
if [[ $_gems != "" ]]; then
|
||||||
|
_values 'gems' $_gems && ret=0
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_opts=( $(bundle help $line[1] | sed -e '/^ \[-/!d; s/^ \[\(-[^=]*\)=.*/\1/') )
|
||||||
|
_opts+=( $(bundle help $line[1] | sed -e '/^ -/!d; s/^ \(-.\), \[\(-[^=]*\)=.*/\1 \2/') )
|
||||||
|
if [[ $_opts != "" ]]; then
|
||||||
|
_values 'options' $_opts && ret=0
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
return ret
|
||||||
2
dot_config/zsh/completion/_g
Normal file
2
dot_config/zsh/completion/_g
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#compdef g
|
||||||
|
compdef g=git
|
||||||
2
dot_config/zsh/completion/_production
Normal file
2
dot_config/zsh/completion/_production
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#compdef production
|
||||||
|
compdef production=heroku
|
||||||
3
dot_config/zsh/completion/_rspec
Normal file
3
dot_config/zsh/completion/_rspec
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#compdef rspec
|
||||||
|
|
||||||
|
compadd -P spec/ $(ls spec/**/*_spec.rb | sed -E "s/spec\///g")
|
||||||
2
dot_config/zsh/completion/_staging
Normal file
2
dot_config/zsh/completion/_staging
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#compdef staging
|
||||||
|
compdef staging=heroku
|
||||||
6
dot_config/zsh/configs/color.zsh
Normal file
6
dot_config/zsh/configs/color.zsh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# makes color constants available
|
||||||
|
autoload -U colors
|
||||||
|
colors
|
||||||
|
|
||||||
|
# enable colored output from ls, etc. on FreeBSD-based systems
|
||||||
|
export CLICOLOR=1
|
||||||
2
dot_config/zsh/configs/editor.zsh
Normal file
2
dot_config/zsh/configs/editor.zsh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export VISUAL=nvim
|
||||||
|
export EDITOR=$VISUAL
|
||||||
1
dot_config/zsh/configs/fzf.zsh
Normal file
1
dot_config/zsh/configs/fzf.zsh
Normal file
@ -0,0 +1 @@
|
|||||||
|
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"'
|
||||||
6
dot_config/zsh/configs/history.zsh
Normal file
6
dot_config/zsh/configs/history.zsh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
setopt hist_ignore_all_dups inc_append_history
|
||||||
|
HISTFILE=~/.zhistory
|
||||||
|
HISTSIZE=4096
|
||||||
|
SAVEHIST=4096
|
||||||
|
|
||||||
|
export ERL_AFLAGS="-kernel shell_history enabled"
|
||||||
4
dot_config/zsh/configs/homebrew.zsh
Normal file
4
dot_config/zsh/configs/homebrew.zsh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# To opt in to Homebrew analytics, `unset` this in ~/.zshrc.local .
|
||||||
|
# Learn more about what you are opting in to at
|
||||||
|
# https://docs.brew.sh/Analytics
|
||||||
|
export HOMEBREW_NO_ANALYTICS=1
|
||||||
17
dot_config/zsh/configs/keybindings.zsh
Normal file
17
dot_config/zsh/configs/keybindings.zsh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# give us access to ^Q
|
||||||
|
stty -ixon
|
||||||
|
|
||||||
|
# vi mode
|
||||||
|
bindkey -v
|
||||||
|
bindkey "^F" vi-cmd-mode
|
||||||
|
|
||||||
|
# handy keybindings
|
||||||
|
bindkey "^A" beginning-of-line
|
||||||
|
bindkey "^E" end-of-line
|
||||||
|
bindkey "^K" kill-line
|
||||||
|
bindkey "^R" history-incremental-search-backward
|
||||||
|
bindkey "^P" history-search-backward
|
||||||
|
bindkey "^Y" accept-and-hold
|
||||||
|
bindkey "^N" insert-last-word
|
||||||
|
bindkey "^Q" push-line-or-edit
|
||||||
|
bindkey -s "^T" "^[Isudo ^[A" # "t" for "toughguy"
|
||||||
9
dot_config/zsh/configs/options.zsh
Normal file
9
dot_config/zsh/configs/options.zsh
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# awesome cd movements from zshkit
|
||||||
|
setopt autocd autopushd pushdminus pushdsilent pushdtohome cdablevars
|
||||||
|
DIRSTACKSIZE=5
|
||||||
|
|
||||||
|
# Enable extended globbing
|
||||||
|
setopt extendedglob
|
||||||
|
|
||||||
|
# Allow [ or ] whereever you want
|
||||||
|
unsetopt nomatch
|
||||||
14
dot_config/zsh/configs/post/completion.zsh
Normal file
14
dot_config/zsh/configs/post/completion.zsh
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# load our own completion functions
|
||||||
|
fpath=(~/.zsh/completion /usr/local/share/zsh/site-functions $fpath)
|
||||||
|
|
||||||
|
# completion; use cache if updated within 24h
|
||||||
|
autoload -Uz compinit
|
||||||
|
if [[ -n $HOME/.zcompdump(#qN.mh+24) ]]; then
|
||||||
|
compinit -d $HOME/.zcompdump;
|
||||||
|
else
|
||||||
|
compinit -C;
|
||||||
|
fi;
|
||||||
|
|
||||||
|
# disable zsh bundled function mtools command mcd
|
||||||
|
# which causes a conflict.
|
||||||
|
compdef -d mcd
|
||||||
14
dot_config/zsh/configs/post/path.zsh
Normal file
14
dot_config/zsh/configs/post/path.zsh
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# ensure dotfiles bin directory is loaded first
|
||||||
|
PATH="$HOME/.bin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
|
# Try loading ASDF from the regular home dir location
|
||||||
|
if [ -f "$HOME/.asdf/asdf.sh" ]; then
|
||||||
|
. "$HOME/.asdf/asdf.sh"
|
||||||
|
elif which brew >/dev/null; then
|
||||||
|
. "$(brew --prefix asdf)/libexec/asdf.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# mkdir .git/safe in the root of repositories you trust
|
||||||
|
PATH=".git/safe/../../bin:$PATH"
|
||||||
|
|
||||||
|
export -U PATH
|
||||||
7
dot_config/zsh/configs/zgenom.zsh
Normal file
7
dot_config/zsh/configs/zgenom.zsh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
source "${HOME}/.zgenom/zgenom.zsh"
|
||||||
|
|
||||||
|
if ! zgenom saved; then
|
||||||
|
source "${HOME}/.zsh/bundles.zsh"
|
||||||
|
|
||||||
|
zgenom save
|
||||||
|
fi
|
||||||
4
dot_config/zsh/functions/_git_delete_branch
Normal file
4
dot_config/zsh/functions/_git_delete_branch
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
_git_delete_branch ()
|
||||||
|
{
|
||||||
|
__gitcomp "$(__git_heads)"
|
||||||
|
}
|
||||||
29
dot_config/zsh/functions/_load_settings
Normal file
29
dot_config/zsh/functions/_load_settings
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# extra files in ~/.zsh/configs/pre , ~/.zsh/configs , and ~/.zsh/configs/post
|
||||||
|
# these are loaded first, second, and third, respectively.
|
||||||
|
_load_settings() {
|
||||||
|
_dir="$1"
|
||||||
|
if [ -d "$_dir" ]; then
|
||||||
|
if [ -d "$_dir/pre" ]; then
|
||||||
|
for config in "$_dir"/pre/**/*~*.zwc(N-.); do
|
||||||
|
. $config
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
for config in "$_dir"/**/*(N-.); do
|
||||||
|
case "$config" in
|
||||||
|
"$_dir"/(pre|post)/*|*.zwc)
|
||||||
|
:
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
. $config
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -d "$_dir/post" ]; then
|
||||||
|
for config in "$_dir"/post/**/*~*.zwc(N-.); do
|
||||||
|
. $config
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
9
dot_config/zsh/functions/change-extension
Normal file
9
dot_config/zsh/functions/change-extension
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Change file extensions recursively in current directory
|
||||||
|
#
|
||||||
|
# change-extension erb haml
|
||||||
|
|
||||||
|
function change-extension() {
|
||||||
|
foreach f (**/*.$1)
|
||||||
|
mv $f $f:r.$2
|
||||||
|
end
|
||||||
|
}
|
||||||
10
dot_config/zsh/functions/envup
Normal file
10
dot_config/zsh/functions/envup
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Load .env file into shell session for environment variables
|
||||||
|
|
||||||
|
function envup() {
|
||||||
|
if [ -f .env ]; then
|
||||||
|
export $(sed '/^ *#/ d' .env)
|
||||||
|
else
|
||||||
|
echo 'No .env file found' 1>&2
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
9
dot_config/zsh/functions/g
Normal file
9
dot_config/zsh/functions/g
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# No arguments: `git status`
|
||||||
|
# With arguments: acts like `git`
|
||||||
|
g() {
|
||||||
|
if [[ $# -gt 0 ]]; then
|
||||||
|
git "$@"
|
||||||
|
else
|
||||||
|
git status
|
||||||
|
fi
|
||||||
|
}
|
||||||
5
dot_config/zsh/functions/mcd
Normal file
5
dot_config/zsh/functions/mcd
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Make directory and change into it.
|
||||||
|
|
||||||
|
function mcd() {
|
||||||
|
mkdir -p "$1" && cd "$1";
|
||||||
|
}
|
||||||
574
dot_config/zsh/lib/async.zsh
Normal file
574
dot_config/zsh/lib/async.zsh
Normal file
@ -0,0 +1,574 @@
|
|||||||
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
#
|
||||||
|
# zsh-async
|
||||||
|
#
|
||||||
|
# version: 1.7.1
|
||||||
|
# author: Mathias Fredriksson
|
||||||
|
# url: https://github.com/mafredri/zsh-async
|
||||||
|
#
|
||||||
|
|
||||||
|
typeset -g ASYNC_VERSION=1.7.1
|
||||||
|
# Produce debug output from zsh-async when set to 1.
|
||||||
|
typeset -g ASYNC_DEBUG=${ASYNC_DEBUG:-0}
|
||||||
|
|
||||||
|
# Execute commands that can manipulate the environment inside the async worker. Return output via callback.
|
||||||
|
_async_eval() {
|
||||||
|
local ASYNC_JOB_NAME
|
||||||
|
# Rename job to _async_eval and redirect all eval output to cat running
|
||||||
|
# in _async_job. Here, stdout and stderr are not separated for
|
||||||
|
# simplicity, this could be improved in the future.
|
||||||
|
{
|
||||||
|
eval "$@"
|
||||||
|
} &> >(ASYNC_JOB_NAME=[async/eval] _async_job 'cat')
|
||||||
|
}
|
||||||
|
|
||||||
|
# Wrapper for jobs executed by the async worker, gives output in parseable format with execution time
|
||||||
|
_async_job() {
|
||||||
|
# Disable xtrace as it would mangle the output.
|
||||||
|
setopt localoptions noxtrace
|
||||||
|
|
||||||
|
# Store start time for job.
|
||||||
|
float -F duration=$EPOCHREALTIME
|
||||||
|
|
||||||
|
# Run the command and capture both stdout (`eval`) and stderr (`cat`) in
|
||||||
|
# separate subshells. When the command is complete, we grab write lock
|
||||||
|
# (mutex token) and output everything except stderr inside the command
|
||||||
|
# block, after the command block has completed, the stdin for `cat` is
|
||||||
|
# closed, causing stderr to be appended with a $'\0' at the end to mark the
|
||||||
|
# end of output from this job.
|
||||||
|
local jobname=${ASYNC_JOB_NAME:-$1}
|
||||||
|
local stdout stderr ret tok
|
||||||
|
{
|
||||||
|
stdout=$(eval "$@")
|
||||||
|
ret=$?
|
||||||
|
duration=$(( EPOCHREALTIME - duration )) # Calculate duration.
|
||||||
|
|
||||||
|
# Grab mutex lock, stalls until token is available.
|
||||||
|
read -r -k 1 -p tok || exit 1
|
||||||
|
|
||||||
|
# Return output (<job_name> <return_code> <stdout> <duration> <stderr>).
|
||||||
|
print -r -n - $'\0'${(q)jobname} $ret ${(q)stdout} $duration
|
||||||
|
} 2> >(stderr=$(cat) && print -r -n - " "${(q)stderr}$'\0')
|
||||||
|
|
||||||
|
# Unlock mutex by inserting a token.
|
||||||
|
print -n -p $tok
|
||||||
|
}
|
||||||
|
|
||||||
|
# The background worker manages all tasks and runs them without interfering with other processes
|
||||||
|
_async_worker() {
|
||||||
|
# Reset all options to defaults inside async worker.
|
||||||
|
emulate -R zsh
|
||||||
|
|
||||||
|
# Make sure monitor is unset to avoid printing the
|
||||||
|
# pids of child processes.
|
||||||
|
unsetopt monitor
|
||||||
|
|
||||||
|
# Redirect stderr to `/dev/null` in case unforseen errors produced by the
|
||||||
|
# worker. For example: `fork failed: resource temporarily unavailable`.
|
||||||
|
# Some older versions of zsh might also print malloc errors (know to happen
|
||||||
|
# on at least zsh 5.0.2 and 5.0.8) likely due to kill signals.
|
||||||
|
exec 2>/dev/null
|
||||||
|
|
||||||
|
# When a zpty is deleted (using -d) all the zpty instances created before
|
||||||
|
# the one being deleted receive a SIGHUP, unless we catch it, the async
|
||||||
|
# worker would simply exit (stop working) even though visible in the list
|
||||||
|
# of zpty's (zpty -L).
|
||||||
|
TRAPHUP() {
|
||||||
|
return 0 # Return 0, indicating signal was handled.
|
||||||
|
}
|
||||||
|
|
||||||
|
local -A storage
|
||||||
|
local unique=0
|
||||||
|
local notify_parent=0
|
||||||
|
local parent_pid=0
|
||||||
|
local coproc_pid=0
|
||||||
|
local processing=0
|
||||||
|
|
||||||
|
local -a zsh_hooks zsh_hook_functions
|
||||||
|
zsh_hooks=(chpwd periodic precmd preexec zshexit zshaddhistory)
|
||||||
|
zsh_hook_functions=(${^zsh_hooks}_functions)
|
||||||
|
unfunction $zsh_hooks &>/dev/null # Deactivate all zsh hooks inside the worker.
|
||||||
|
unset $zsh_hook_functions # And hooks with registered functions.
|
||||||
|
unset zsh_hooks zsh_hook_functions # Cleanup.
|
||||||
|
|
||||||
|
close_idle_coproc() {
|
||||||
|
local -a pids
|
||||||
|
pids=(${${(v)jobstates##*:*:}%\=*})
|
||||||
|
|
||||||
|
# If coproc (cat) is the only child running, we close it to avoid
|
||||||
|
# leaving it running indefinitely and cluttering the process tree.
|
||||||
|
if (( ! processing )) && [[ $#pids = 1 ]] && [[ $coproc_pid = $pids[1] ]]; then
|
||||||
|
coproc :
|
||||||
|
coproc_pid=0
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
child_exit() {
|
||||||
|
close_idle_coproc
|
||||||
|
|
||||||
|
# On older version of zsh (pre 5.2) we notify the parent through a
|
||||||
|
# SIGWINCH signal because `zpty` did not return a file descriptor (fd)
|
||||||
|
# prior to that.
|
||||||
|
if (( notify_parent )); then
|
||||||
|
# We use SIGWINCH for compatibility with older versions of zsh
|
||||||
|
# (pre 5.1.1) where other signals (INFO, ALRM, USR1, etc.) could
|
||||||
|
# cause a deadlock in the shell under certain circumstances.
|
||||||
|
kill -WINCH $parent_pid
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Register a SIGCHLD trap to handle the completion of child processes.
|
||||||
|
trap child_exit CHLD
|
||||||
|
|
||||||
|
# Process option parameters passed to worker
|
||||||
|
while getopts "np:u" opt; do
|
||||||
|
case $opt in
|
||||||
|
n) notify_parent=1;;
|
||||||
|
p) parent_pid=$OPTARG;;
|
||||||
|
u) unique=1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
killjobs() {
|
||||||
|
local tok
|
||||||
|
local -a pids
|
||||||
|
pids=(${${(v)jobstates##*:*:}%\=*})
|
||||||
|
|
||||||
|
# No need to send SIGHUP if no jobs are running.
|
||||||
|
(( $#pids == 0 )) && continue
|
||||||
|
(( $#pids == 1 )) && [[ $coproc_pid = $pids[1] ]] && continue
|
||||||
|
|
||||||
|
# Grab lock to prevent half-written output in case a child
|
||||||
|
# process is in the middle of writing to stdin during kill.
|
||||||
|
(( coproc_pid )) && read -r -k 1 -p tok
|
||||||
|
|
||||||
|
kill -HUP -$$ # Send to entire process group.
|
||||||
|
coproc : # Quit coproc.
|
||||||
|
coproc_pid=0 # Reset pid.
|
||||||
|
}
|
||||||
|
|
||||||
|
local request do_eval=0
|
||||||
|
local -a cmd
|
||||||
|
while :; do
|
||||||
|
# Wait for jobs sent by async_job.
|
||||||
|
read -r -d $'\0' request || {
|
||||||
|
# Since we handle SIGHUP above (and thus do not know when `zpty -d`)
|
||||||
|
# occurs, a failure to read probably indicates that stdin has
|
||||||
|
# closed. This is why we propagate the signal to all children and
|
||||||
|
# exit manually.
|
||||||
|
kill -HUP -$$ # Send SIGHUP to all jobs.
|
||||||
|
exit 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# Check for non-job commands sent to worker
|
||||||
|
case $request in
|
||||||
|
_unset_trap) notify_parent=0; continue;;
|
||||||
|
_killjobs) killjobs; continue;;
|
||||||
|
_async_eval*) do_eval=1;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Parse the request using shell parsing (z) to allow commands
|
||||||
|
# to be parsed from single strings and multi-args alike.
|
||||||
|
cmd=("${(z)request}")
|
||||||
|
|
||||||
|
# Name of the job (first argument).
|
||||||
|
local job=$cmd[1]
|
||||||
|
|
||||||
|
# If worker should perform unique jobs
|
||||||
|
if (( unique )); then
|
||||||
|
# Check if a previous job is still running, if yes, let it finnish
|
||||||
|
for pid in ${${(v)jobstates##*:*:}%\=*}; do
|
||||||
|
if [[ ${storage[$job]} == $pid ]]; then
|
||||||
|
continue 2
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Guard against closing coproc from trap before command has started.
|
||||||
|
processing=1
|
||||||
|
|
||||||
|
# Because we close the coproc after the last job has completed, we must
|
||||||
|
# recreate it when there are no other jobs running.
|
||||||
|
if (( ! coproc_pid )); then
|
||||||
|
# Use coproc as a mutex for synchronized output between children.
|
||||||
|
coproc cat
|
||||||
|
coproc_pid="$!"
|
||||||
|
# Insert token into coproc
|
||||||
|
print -n -p "t"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if (( do_eval )); then
|
||||||
|
shift cmd # Strip _async_eval from cmd.
|
||||||
|
_async_eval $cmd
|
||||||
|
else
|
||||||
|
# Run job in background, completed jobs are printed to stdout.
|
||||||
|
_async_job $cmd &
|
||||||
|
# Store pid because zsh job manager is extremely unflexible (show jobname as non-unique '$job')...
|
||||||
|
storage[$job]="$!"
|
||||||
|
fi
|
||||||
|
|
||||||
|
processing=0 # Disable guard.
|
||||||
|
|
||||||
|
if (( do_eval )); then
|
||||||
|
do_eval=0
|
||||||
|
|
||||||
|
# When there are no active jobs we can't rely on the CHLD trap to
|
||||||
|
# manage the coproc lifetime.
|
||||||
|
close_idle_coproc
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Get results from finished jobs and pass it to the to callback function. This is the only way to reliably return the
|
||||||
|
# job name, return code, output and execution time and with minimal effort.
|
||||||
|
#
|
||||||
|
# If the async process buffer becomes corrupt, the callback will be invoked with the first argument being `[async]` (job
|
||||||
|
# name), non-zero return code and fifth argument describing the error (stderr).
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_process_results <worker_name> <callback_function>
|
||||||
|
#
|
||||||
|
# callback_function is called with the following parameters:
|
||||||
|
# $1 = job name, e.g. the function passed to async_job
|
||||||
|
# $2 = return code
|
||||||
|
# $3 = resulting stdout from execution
|
||||||
|
# $4 = execution time, floating point e.g. 2.05 seconds
|
||||||
|
# $5 = resulting stderr from execution
|
||||||
|
# $6 = has next result in buffer (0 = buffer empty, 1 = yes)
|
||||||
|
#
|
||||||
|
async_process_results() {
|
||||||
|
setopt localoptions unset noshwordsplit noksharrays noposixidentifiers noposixstrings
|
||||||
|
|
||||||
|
local worker=$1
|
||||||
|
local callback=$2
|
||||||
|
local caller=$3
|
||||||
|
local -a items
|
||||||
|
local null=$'\0' data
|
||||||
|
integer -l len pos num_processed has_next
|
||||||
|
|
||||||
|
typeset -gA ASYNC_PROCESS_BUFFER
|
||||||
|
|
||||||
|
# Read output from zpty and parse it if available.
|
||||||
|
while zpty -r -t $worker data 2>/dev/null; do
|
||||||
|
ASYNC_PROCESS_BUFFER[$worker]+=$data
|
||||||
|
len=${#ASYNC_PROCESS_BUFFER[$worker]}
|
||||||
|
pos=${ASYNC_PROCESS_BUFFER[$worker][(i)$null]} # Get index of NULL-character (delimiter).
|
||||||
|
|
||||||
|
# Keep going until we find a NULL-character.
|
||||||
|
if (( ! len )) || (( pos > len )); then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
while (( pos <= len )); do
|
||||||
|
# Take the content from the beginning, until the NULL-character and
|
||||||
|
# perform shell parsing (z) and unquoting (Q) as an array (@).
|
||||||
|
items=("${(@Q)${(z)ASYNC_PROCESS_BUFFER[$worker][1,$pos-1]}}")
|
||||||
|
|
||||||
|
# Remove the extracted items from the buffer.
|
||||||
|
ASYNC_PROCESS_BUFFER[$worker]=${ASYNC_PROCESS_BUFFER[$worker][$pos+1,$len]}
|
||||||
|
|
||||||
|
len=${#ASYNC_PROCESS_BUFFER[$worker]}
|
||||||
|
if (( len > 1 )); then
|
||||||
|
pos=${ASYNC_PROCESS_BUFFER[$worker][(i)$null]} # Get index of NULL-character (delimiter).
|
||||||
|
fi
|
||||||
|
|
||||||
|
has_next=$(( len != 0 ))
|
||||||
|
if (( $#items == 5 )); then
|
||||||
|
items+=($has_next)
|
||||||
|
$callback "${(@)items}" # Send all parsed items to the callback.
|
||||||
|
(( num_processed++ ))
|
||||||
|
elif [[ -z $items ]]; then
|
||||||
|
# Empty items occur between results due to double-null ($'\0\0')
|
||||||
|
# caused by commands being both pre and suffixed with null.
|
||||||
|
else
|
||||||
|
# In case of corrupt data, invoke callback with *async* as job
|
||||||
|
# name, non-zero exit status and an error message on stderr.
|
||||||
|
$callback "[async]" 1 "" 0 "$0:$LINENO: error: bad format, got ${#items} items (${(q)items})" $has_next
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
(( num_processed )) && return 0
|
||||||
|
|
||||||
|
# Avoid printing exit value when `setopt printexitvalue` is active.`
|
||||||
|
[[ $caller = trap || $caller = watcher ]] && return 0
|
||||||
|
|
||||||
|
# No results were processed
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Watch worker for output
|
||||||
|
_async_zle_watcher() {
|
||||||
|
setopt localoptions noshwordsplit
|
||||||
|
typeset -gA ASYNC_PTYS ASYNC_CALLBACKS
|
||||||
|
local worker=$ASYNC_PTYS[$1]
|
||||||
|
local callback=$ASYNC_CALLBACKS[$worker]
|
||||||
|
|
||||||
|
if [[ -n $2 ]]; then
|
||||||
|
# from man zshzle(1):
|
||||||
|
# `hup' for a disconnect, `nval' for a closed or otherwise
|
||||||
|
# invalid descriptor, or `err' for any other condition.
|
||||||
|
# Systems that support only the `select' system call always use
|
||||||
|
# `err'.
|
||||||
|
|
||||||
|
# this has the side effect to unregister the broken file descriptor
|
||||||
|
async_stop_worker $worker
|
||||||
|
|
||||||
|
if [[ -n $callback ]]; then
|
||||||
|
$callback '[async]' 2 "" 0 "$worker:zle -F $1 returned error $2" 0
|
||||||
|
fi
|
||||||
|
return
|
||||||
|
fi;
|
||||||
|
|
||||||
|
if [[ -n $callback ]]; then
|
||||||
|
async_process_results $worker $callback watcher
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Start a new asynchronous job on specified worker, assumes the worker is running.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_job <worker_name> <my_function> [<function_params>]
|
||||||
|
#
|
||||||
|
async_job() {
|
||||||
|
setopt localoptions noshwordsplit noksharrays noposixidentifiers noposixstrings
|
||||||
|
|
||||||
|
local worker=$1; shift
|
||||||
|
|
||||||
|
local -a cmd
|
||||||
|
cmd=("$@")
|
||||||
|
if (( $#cmd > 1 )); then
|
||||||
|
cmd=(${(q)cmd}) # Quote special characters in multi argument commands.
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Quote the cmd in case RC_EXPAND_PARAM is set.
|
||||||
|
zpty -w $worker "$cmd"$'\0'
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Evaluate a command (like async_job) inside the async worker, then worker environment can be manipulated. For example,
|
||||||
|
# issuing a cd command will change the PWD of the worker which will then be inherited by all future async jobs.
|
||||||
|
#
|
||||||
|
# Output will be returned via callback, job name will be [async/eval].
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_worker_eval <worker_name> <my_function> [<function_params>]
|
||||||
|
#
|
||||||
|
async_worker_eval() {
|
||||||
|
setopt localoptions noshwordsplit noksharrays noposixidentifiers noposixstrings
|
||||||
|
|
||||||
|
local worker=$1; shift
|
||||||
|
|
||||||
|
local -a cmd
|
||||||
|
cmd=("$@")
|
||||||
|
if (( $#cmd > 1 )); then
|
||||||
|
cmd=(${(q)cmd}) # Quote special characters in multi argument commands.
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Quote the cmd in case RC_EXPAND_PARAM is set.
|
||||||
|
zpty -w $worker "_async_eval $cmd"$'\0'
|
||||||
|
}
|
||||||
|
|
||||||
|
# This function traps notification signals and calls all registered callbacks
|
||||||
|
_async_notify_trap() {
|
||||||
|
setopt localoptions noshwordsplit
|
||||||
|
|
||||||
|
local k
|
||||||
|
for k in ${(k)ASYNC_CALLBACKS}; do
|
||||||
|
async_process_results $k ${ASYNC_CALLBACKS[$k]} trap
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Register a callback for completed jobs. As soon as a job is finnished, async_process_results will be called with the
|
||||||
|
# specified callback function. This requires that a worker is initialized with the -n (notify) option.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_register_callback <worker_name> <callback_function>
|
||||||
|
#
|
||||||
|
async_register_callback() {
|
||||||
|
setopt localoptions noshwordsplit nolocaltraps
|
||||||
|
|
||||||
|
typeset -gA ASYNC_CALLBACKS
|
||||||
|
local worker=$1; shift
|
||||||
|
|
||||||
|
ASYNC_CALLBACKS[$worker]="$*"
|
||||||
|
|
||||||
|
# Enable trap when the ZLE watcher is unavailable, allows
|
||||||
|
# workers to notify (via -n) when a job is done.
|
||||||
|
if [[ ! -o interactive ]] || [[ ! -o zle ]]; then
|
||||||
|
trap '_async_notify_trap' WINCH
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Unregister the callback for a specific worker.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_unregister_callback <worker_name>
|
||||||
|
#
|
||||||
|
async_unregister_callback() {
|
||||||
|
typeset -gA ASYNC_CALLBACKS
|
||||||
|
|
||||||
|
unset "ASYNC_CALLBACKS[$1]"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Flush all current jobs running on a worker. This will terminate any and all running processes under the worker, use
|
||||||
|
# with caution.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_flush_jobs <worker_name>
|
||||||
|
#
|
||||||
|
async_flush_jobs() {
|
||||||
|
setopt localoptions noshwordsplit
|
||||||
|
|
||||||
|
local worker=$1; shift
|
||||||
|
|
||||||
|
# Check if the worker exists
|
||||||
|
zpty -t $worker &>/dev/null || return 1
|
||||||
|
|
||||||
|
# Send kill command to worker
|
||||||
|
async_job $worker "_killjobs"
|
||||||
|
|
||||||
|
# Clear the zpty buffer.
|
||||||
|
local junk
|
||||||
|
if zpty -r -t $worker junk '*'; then
|
||||||
|
(( ASYNC_DEBUG )) && print -n "async_flush_jobs $worker: ${(V)junk}"
|
||||||
|
while zpty -r -t $worker junk '*'; do
|
||||||
|
(( ASYNC_DEBUG )) && print -n "${(V)junk}"
|
||||||
|
done
|
||||||
|
(( ASYNC_DEBUG )) && print
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Finally, clear the process buffer in case of partially parsed responses.
|
||||||
|
typeset -gA ASYNC_PROCESS_BUFFER
|
||||||
|
unset "ASYNC_PROCESS_BUFFER[$worker]"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Start a new async worker with optional parameters, a worker can be told to only run unique tasks and to notify a
|
||||||
|
# process when tasks are complete.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_start_worker <worker_name> [-u] [-n] [-p <pid>]
|
||||||
|
#
|
||||||
|
# opts:
|
||||||
|
# -u unique (only unique job names can run)
|
||||||
|
# -n notify through SIGWINCH signal
|
||||||
|
# -p pid to notify (defaults to current pid)
|
||||||
|
#
|
||||||
|
async_start_worker() {
|
||||||
|
setopt localoptions noshwordsplit
|
||||||
|
|
||||||
|
local worker=$1; shift
|
||||||
|
zpty -t $worker &>/dev/null && return
|
||||||
|
|
||||||
|
typeset -gA ASYNC_PTYS
|
||||||
|
typeset -h REPLY
|
||||||
|
typeset has_xtrace=0
|
||||||
|
|
||||||
|
# Make sure async worker is started without xtrace
|
||||||
|
# (the trace output interferes with the worker).
|
||||||
|
[[ -o xtrace ]] && {
|
||||||
|
has_xtrace=1
|
||||||
|
unsetopt xtrace
|
||||||
|
}
|
||||||
|
|
||||||
|
if (( ! ASYNC_ZPTY_RETURNS_FD )) && [[ -o interactive ]] && [[ -o zle ]]; then
|
||||||
|
# When zpty doesn't return a file descriptor (on older versions of zsh)
|
||||||
|
# we try to guess it anyway.
|
||||||
|
integer -l zptyfd
|
||||||
|
exec {zptyfd}>&1 # Open a new file descriptor (above 10).
|
||||||
|
exec {zptyfd}>&- # Close it so it's free to be used by zpty.
|
||||||
|
fi
|
||||||
|
|
||||||
|
zpty -b $worker _async_worker -p $$ $@ || {
|
||||||
|
async_stop_worker $worker
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Re-enable it if it was enabled, for debugging.
|
||||||
|
(( has_xtrace )) && setopt xtrace
|
||||||
|
|
||||||
|
if [[ $ZSH_VERSION < 5.0.8 ]]; then
|
||||||
|
# For ZSH versions older than 5.0.8 we delay a bit to give
|
||||||
|
# time for the worker to start before issuing commands,
|
||||||
|
# otherwise it will not be ready to receive them.
|
||||||
|
sleep 0.001
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -o interactive ]] && [[ -o zle ]]; then
|
||||||
|
if (( ! ASYNC_ZPTY_RETURNS_FD )); then
|
||||||
|
REPLY=$zptyfd # Use the guessed value for the file desciptor.
|
||||||
|
fi
|
||||||
|
|
||||||
|
ASYNC_PTYS[$REPLY]=$worker # Map the file desciptor to the worker.
|
||||||
|
zle -F $REPLY _async_zle_watcher # Register the ZLE handler.
|
||||||
|
|
||||||
|
# Disable trap in favor of ZLE handler when notify is enabled (-n).
|
||||||
|
async_job $worker _unset_trap
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Stop one or multiple workers that are running, all unfetched and incomplete work will be lost.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_stop_worker <worker_name_1> [<worker_name_2>]
|
||||||
|
#
|
||||||
|
async_stop_worker() {
|
||||||
|
setopt localoptions noshwordsplit
|
||||||
|
|
||||||
|
local ret=0 worker k v
|
||||||
|
for worker in $@; do
|
||||||
|
# Find and unregister the zle handler for the worker
|
||||||
|
for k v in ${(@kv)ASYNC_PTYS}; do
|
||||||
|
if [[ $v == $worker ]]; then
|
||||||
|
zle -F $k
|
||||||
|
unset "ASYNC_PTYS[$k]"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
async_unregister_callback $worker
|
||||||
|
zpty -d $worker 2>/dev/null || ret=$?
|
||||||
|
|
||||||
|
# Clear any partial buffers.
|
||||||
|
typeset -gA ASYNC_PROCESS_BUFFER
|
||||||
|
unset "ASYNC_PROCESS_BUFFER[$worker]"
|
||||||
|
done
|
||||||
|
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Initialize the required modules for zsh-async. To be called before using the zsh-async library.
|
||||||
|
#
|
||||||
|
# usage:
|
||||||
|
# async_init
|
||||||
|
#
|
||||||
|
async_init() {
|
||||||
|
(( ASYNC_INIT_DONE )) && return
|
||||||
|
typeset -g ASYNC_INIT_DONE=1
|
||||||
|
|
||||||
|
zmodload zsh/zpty
|
||||||
|
zmodload zsh/datetime
|
||||||
|
|
||||||
|
# Check if zsh/zpty returns a file descriptor or not,
|
||||||
|
# shell must also be interactive with zle enabled.
|
||||||
|
typeset -g ASYNC_ZPTY_RETURNS_FD=0
|
||||||
|
[[ -o interactive ]] && [[ -o zle ]] && {
|
||||||
|
typeset -h REPLY
|
||||||
|
zpty _async_test :
|
||||||
|
(( REPLY )) && ASYNC_ZPTY_RETURNS_FD=1
|
||||||
|
zpty -d _async_test
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async() {
|
||||||
|
async_init
|
||||||
|
}
|
||||||
|
|
||||||
|
async "$@"
|
||||||
1
dot_config/zsh/symlink_dot_zshrc
Normal file
1
dot_config/zsh/symlink_dot_zshrc
Normal file
@ -0,0 +1 @@
|
|||||||
|
zshrc
|
||||||
53
dot_config/zsh/zshrc
Normal file
53
dot_config/zsh/zshrc
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# load custom executable functions
|
||||||
|
for function in $HOME/.config/zsh/functions/*; do
|
||||||
|
source $function
|
||||||
|
done
|
||||||
|
|
||||||
|
# extra files in ~/.zsh/configs/pre , ~/.zsh/configs , and ~/.zsh/configs/post
|
||||||
|
# these are loaded first, second, and third, respectively.
|
||||||
|
source $HOME/.config/zsh/functions/_load_settings
|
||||||
|
_load_settings "$HOME/.config/zsh/configs"
|
||||||
|
|
||||||
|
# aliases
|
||||||
|
[[ -f $HOME/.aliases ]] && source $HOME/.aliases
|
||||||
|
|
||||||
|
# set open file limit
|
||||||
|
ulimit -n 1024
|
||||||
|
|
||||||
|
# ignore duplicate history entries
|
||||||
|
setopt histignoredups
|
||||||
|
|
||||||
|
# keep TONS of history
|
||||||
|
export HISTFILE=$HOME/.config/zsh/.zsh_history
|
||||||
|
export HISTSIZE=4096
|
||||||
|
export SAVEHIST=4096
|
||||||
|
|
||||||
|
# shared history
|
||||||
|
setopt append_history
|
||||||
|
setopt inc_append_history
|
||||||
|
setopt share_history
|
||||||
|
|
||||||
|
# automatically pushd
|
||||||
|
setopt auto_pushd
|
||||||
|
export dirstacksize=5
|
||||||
|
|
||||||
|
# Case insensitive completion
|
||||||
|
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||||
|
|
||||||
|
# Enable completion menu
|
||||||
|
zstyle ':completion:*' menu select=1 _complete _ignored _approximate
|
||||||
|
|
||||||
|
# Node stuff
|
||||||
|
export PATH=/usr/local/share/npm/bin:$PATH
|
||||||
|
export NODE_PATH=/usr/local/lib/node_modules
|
||||||
|
|
||||||
|
# Environment config
|
||||||
|
[[ -f $HOME/.config/zsh/.zshrc.env ]] && source $HOME/.config/zsh/.zshrc.env
|
||||||
|
|
||||||
|
if (( $+commands[thefuck] )); then
|
||||||
|
eval "$(thefuck --alias)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export PATH="$HOME/.bin:$PATH"
|
||||||
|
|
||||||
|
eval "$(starship init zsh)"
|
||||||
11
dot_zshenv
Normal file
11
dot_zshenv
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# XDG
|
||||||
|
export XDG_DATA_HOME=$HOME/.local/share
|
||||||
|
export XDG_CONFIG_HOME=$HOME/.config
|
||||||
|
export XDG_STATE_HOME=$HOME/.local/state
|
||||||
|
export XDG_CACHE_HOME=$HOME/.cache
|
||||||
|
export XDG_RUNTIME_DIR=/run/user/$UID
|
||||||
|
|
||||||
|
# Tell various apps where to find their config
|
||||||
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||||
|
export PSQLRC="$XDG_CONFIG_HOME/pg/psqlrc"
|
||||||
|
export ASDF_CONFIG_FILE="$XDG_CONFIG_HOME/asdf/asdfrc"
|
||||||
Loading…
Reference in New Issue
Block a user