A bunch of env file changes I lost track of

This commit is contained in:
Lockszmith (@VAST) 2025-04-09 16:28:02 -04:00
parent 8b78292024
commit f1edee97ea
10 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1 @@
../../../_src.posix/private_dot_config/sz.env/ccc_load_complete-alias.env

View File

@ -0,0 +1 @@
../../../_src.posix/private_dot_config/sz.env/zza_vivid.env

View File

@ -0,0 +1 @@
../../../_src.posix/private_dot_config/sz.env/zzb_eza.env

View File

@ -0,0 +1 @@
../../../_src.posix/private_dot_config/sz.env/ccc_load_complete-alias.env

View File

@ -0,0 +1 @@
../../../_src.posix/private_dot_config/sz.env/zzb_eza.env

View File

@ -0,0 +1 @@
../../_src.posix/private_dot_ssh/config

View File

@ -0,0 +1,10 @@
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
f [ -f "$SZ_ENV_ROOT/lib/complete-alias" ]; then
source "$SZ_ENV_ROOT/lib/complete-alias" --noattach
fi
if [[ -n "${DBG}" && -n "$( command -v _complete_alias )" ]]; then
echo "complete-alias will be loaded."
fi

View File

@ -3,6 +3,7 @@
if is_cmd lsd; then
alias _ls="$(command -v lsd) "
alias lg="ll --git "
[[ -n "${DBG}" ]] && echo "assigned lsd as ls alias."

View File

@ -0,0 +1,11 @@
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
if is_cmd eza; then
alias _ls="$(command -v eza) --icons "
alias lg="ll --git "
[[ -n "${DBG}" ]] && echo "assigned eza as ls alias."
fi

View File

@ -7,6 +7,12 @@ if is_cmd 'chezmoi'; then
export CHEZMOI_GITHUB_ACCESS_TOKEN={{- .githubToken | quote }}
CZG_ROOT="$(chezmoi git -- rev-parse --show-toplevel)"
alias czg="git --work-tree=$CZG_ROOT --git-dir=$CZG_ROOT/.git "
unset CZG_ROOT
complete -F _complete_alias czg
czcd() {
cd "$(chezmoi source-path "${@}")"
}