This commit is contained in:
2026-05-26 15:01:41 +02:00
parent 789ca8a41c
commit 8aa0d0ff61
9 changed files with 293 additions and 293 deletions
+12 -12
View File
@@ -1,29 +1,29 @@
# MANPAGER
if (( $+commands[bat] )); then
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
export MANROFFOPT=-c
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
export MANROFFOPT=-c
fi
# Editor
for _uy_app in nvim helix vim vi nano; do
if (( $+commands[$_uy_app] )); then
export EDITOR=$_uy_app
export VISUAL=$_uy_app
break
fi
if (( $+commands[$_uy_app] )); then
export EDITOR=$_uy_app
export VISUAL=$_uy_app
break
fi
done
unset _uy_app
if (( $+commands[helix] )) && ! (( $+commands[hx] )); then
alias hx=helix
alias hx=helix
fi
# GPG
if (( $+commands[gpg] )); then
export GPG_TTY=$(tty)
export GPG_TTY=$(tty)
fi
# Catppuccin Mocha — autosuggestions color
@@ -39,12 +39,12 @@ fi
# fnm
if (( $+commands[fnm] )); then
eval "$(fnm env --shell zsh --use-on-cd)"
eval "$(fnm env --shell zsh --use-on-cd)"
fi
# bat
if (( $+commands[bat] )); then
export BAT_THEME="Catppuccin Mocha"
export BAT_STYLE="default,-numbers"
export BAT_THEME="Catppuccin Mocha"
export BAT_STYLE="default,-numbers"
fi