mirror of
https://tildegit.org/hyperreal/dotfiles-hyperreal.git
synced 2026-03-09 13:28:12 +01:00
28 lines
673 B
Bash
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
|