Compare commits

...

2 commits

Author SHA1 Message Date
Lockszmith (@VAST)
17b3397550 A bunch of env file changes I lost track of 2025-04-09 16:28:02 -04:00
Lockszmith (@VAST)
8b78292024 cleanup, no longer needed file 2025-04-09 16:26:55 -04:00
10 changed files with 33 additions and 16 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

@ -1,16 +0,0 @@
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
alias l='ls -lahF --color=auto '
alias lold='l -t '
alias lnew='l -tr '
alias lu='l -U '
alias ll='l -A'
alias sudo='sudo '
export VISUAL="nvim" EDITOR="nvim"
alias nvim='POSTFIX_BUITINS=1 command nvim -p '
alias vi='nvim '
alias vim='nvim '
alias nvimdiff='nvim -d '
alias vimdiff='nvimdiff '

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 "${@}")"
}