6 lines
194 B
Text
6 lines
194 B
Text
|
|
# shellcheck shell=bash
|
||
|
|
# Initialize Starship prompt
|
||
|
|
# Requires: starship binary in PATH (installed to ~/.local/bin)
|
||
|
|
if command -v starship &>/dev/null; then
|
||
|
|
eval "$(starship init bash)"
|
||
|
|
fi
|