Starship.toml -
: If you don't want to write everything from scratch, Starship offers Presets like "No-Runtime-Versions" or "Tokyo Night" that you can copy-paste into your file. Configuration - Starship
: 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 starship.toml
# 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 : If you don't want to write everything
: After saving the file, open a new terminal window or tab to see the updated look immediately. Copied to clipboard Key Tips for Setup :