zsh: formatting

This commit is contained in:
Fernando Schauenburg 2024-03-20 23:29:13 +01:00
parent d80292efd2
commit 9170201712

View file

@ -6,17 +6,10 @@ source "$ZDOTDIR/line-editor.zsh"
source "$ZDOTDIR/man-pages.zsh" source "$ZDOTDIR/man-pages.zsh"
source "$ZDOTDIR/prompt.zsh" source "$ZDOTDIR/prompt.zsh"
if command -v broot >/dev/null 2>&1; then # Additional setup for programs, if they are installed.
source "$ZDOTDIR/broot.zsh" command -v broot >/dev/null 2>&1 && source "$ZDOTDIR/broot.zsh"
fi command -v eza >/dev/null 2>&1 && source "$ZDOTDIR/eza.zsh"
command -v fzf >/dev/null 2>&1 && source "$ZDOTDIR/fzf.zsh"
if command -v eza >/dev/null 2>&1; then
source "$ZDOTDIR/eza.zsh"
fi
if command -v fzf >/dev/null 2>&1; then
source "$ZDOTDIR/fzf.zsh"
fi
# Set up autoload for custom functions. # Set up autoload for custom functions.
fpath=("$ZDOTDIR/functions" $fpath) fpath=("$ZDOTDIR/functions" $fpath)