Skip to content

Instantly share code, notes, and snippets.

@yerbestpal
Last active July 25, 2023 17:01
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save yerbestpal/e2989913e981ac8ed592c0122e37bcf2 to your computer and use it in GitHub Desktop.
Save yerbestpal/e2989913e981ac8ed592c0122e37bcf2 to your computer and use it in GitHub Desktop.
Starship configuration file.
# Starship command prompt configuration file. Colour choice and over-use of emoji
# is to help blend in with Ubuntu MATE default theme, Ambiant-Mate.
# disable starship from forcing a new line to be taken. Solved the empty line
# at start of terminal
add_newline = false
[line_break]
disabled = true
# Replace the "❯" symbol in the prompt with "➟"
[character] # The name of the module we are configuring is "character"
use_symbol_for_status = true
symbol = " ➟" # The "symbol" segment is being set to "➜"
error_symbol = " ✗"
style_success = "bold #00A652"
style_failure = "bold #df382c"
# Hide the username. The username will only show in certain scenarios
[username]
disabled = true
# shows the hostname on new lines
[hostname]
ssh_only = false
prefix = "💻️ "
# suffix = ">>"
trim_at = ".companyname.com"
disabled = false
style = "bold italic #87A752"
# configure directory
[directory]
truncation_length = 10
truncate_to_repo = true # truncates directory to root folder if in github repo
prefix = " 📂️ "
style = "bold italic #87A752"
[cmd_duration]
min_time = 4
show_milliseconds = false
disabled = false
prefix = " ⏲️ "
style = "bold italic #87A752"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment