loctranp

starship.toml

Aug 16th, 2022
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. # Get editor completions based on the config schema
  3. "$schema" = 'https://starship.rs/config-schema.json'
  4.  
  5. format = "[](bold #cba6f7) $directory [❯](bold #a6e3a1)[❯](bold #89b4fa)[❯](bold #fab387) "
  6. right_format = "$git_branch"
  7.  
  8. # Inserts a blank line between shell prompts
  9. add_newline = false
  10.  
  11. # Replace the "❯" symbol in the prompt with "➜"
  12. [character] # The name of the module we are configuring is "character"
  13. success_symbol = "[❯](bold green)[❯](bold blue)[❯](bold orange)" # The "success_symbol" segment is being set to "➜" with the color "bold green"
  14.  
  15. # Disable the package module, hiding it from the prompt completely
  16. [package]
  17. disabled = true
  18.  
  19. [git_branch]
  20. format = "[](bold #cba6f7) [❯](bold #89b4fa)[❯](bold #fab387) [$branch](bold #f5c2e7)"
  21.  
  22. [directory]
  23. format = "[$path](#f5c2e7)"
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment