dotfiles-hyperreal/.zshrc
2026-01-01 10:54:19 +01:00

28 lines
673 B
Bash

# zshrc for OpenBSD
# zsh-autosuggestions
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
# zsh-syntax-highlighting
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# broot
source /home/hyperreal/.config/broot/launcher/bash/br
# fzf
eval "$(fzf --zsh)"
# atuin.sh
eval "$(atuin init zsh)"
# liquidprompt
source /usr/local/share/liquidprompt/liquidprompt
# fastfetch
if [ -x /home/hyperreal/go/bin/gum ]; then
if [ -x /usr/local/bin/fastfetch ]; then
fastfetch -l none | gum style --foreground="#f38ba8" --bold | gum table -p -s : --border.foreground="#585b70"
fi
fi
# vim: sw=4 sts=4 ts=4 ai et ft=zsh