Starship.toml (2024)

# 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

: After saving the file, open a new terminal window or tab to see the updated look immediately. starship.toml

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 # Inserts a blank line between shell prompts

Below is a basic configuration you can paste into your starship.toml file to get started: starship.toml

Go to Top