Compare commits

..

No commits in common. "17b3397550796915dd7b8973ca5fb01b99a06d75" and "b40817b8b8d9390e1f84604a7ed171d26147c9d6" have entirely different histories.

10 changed files with 16 additions and 33 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,16 @@
#!/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

@ -1,10 +0,0 @@
#!/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,7 +3,6 @@
if is_cmd lsd; then if is_cmd lsd; then
alias _ls="$(command -v lsd) " alias _ls="$(command -v lsd) "
alias lg="ll --git "
[[ -n "${DBG}" ]] && echo "assigned lsd as ls alias." [[ -n "${DBG}" ]] && echo "assigned lsd as ls alias."

View file

@ -1,11 +0,0 @@
#!/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,12 +7,6 @@ if is_cmd 'chezmoi'; then
export CHEZMOI_GITHUB_ACCESS_TOKEN={{- .githubToken | quote }} 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() { czcd() {
cd "$(chezmoi source-path "${@}")" cd "$(chezmoi source-path "${@}")"
} }