Starship.toml Page
: If you want to use special characters like $ , [ , or ] , you must escape them (e.g., \$ ) to prevent Starship from interpreting them as variables. Example Configuration
To configure the prompt, you need to create or edit the starship.toml file, which is typically located at ~/.config/starship.toml . Basic Configuration Structure starship.toml
The starship.toml file uses TOML syntax to define the order and style of information in your terminal prompt. : If you want to use special characters
: Each prompt element (like directory , git_branch , or character ) has its own section for detailed styling. : Each prompt element (like directory , git_branch
# Inserts a blank line between shell prompts add_newline = true # Define the order of modules in the prompt format = """ $directory\ $git_branch\ $git_status\ $character """ [directory] style = "blue" read_only = " " [character] success_symbol = "[➜](bold green)" error_symbol = "[➜](bold red)" [git_branch] symbol = " " style = "purple" Use code with caution. Copied to clipboard Key Tips for Setup
