dotfiles/dot_config/fish/conf.d/10-starship.fish

13 lines
246 B
Fish
Raw Normal View History

2024-04-14 18:41:15 -07:00
#!/usr/bin/env fish
if command -v starship &>/dev/null
function starship_transient_prompt_func
starship module character
end
2024-04-14 18:41:15 -07:00
if status is-interactive
starship init fish | source
enable_transience
end
2024-04-14 18:41:15 -07:00
end