Advertisement
bal_gennady

starship dotfile by @omerxx

Oct 29th, 2023 (edited)
1,181
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
INI file 1.37 KB | Software | 0 0
  1. # ~/.config/starship.toml
  2.  
  3. # format = '$all$directory$character'
  4. add_newline = false
  5. # A minimal left prompt
  6. format = """$directory$character"""
  7. palette = "catppuccin_mocha"
  8. # move the rest of the prompt to the right
  9. right_format = """$all"""
  10.  
  11. # [directory]
  12. # truncation_length = 2
  13. # truncation_symbol = '…/'
  14. # disabled = true
  15.  
  16. [directory.substitutions]
  17. '~/tests/starship-custom' = 'work-project'
  18.  
  19.  
  20. [aws]
  21. format = 'on [$symbol($profile )(\($region\) )]($style)'
  22. style = 'bold blue'
  23. symbol = "  "
  24.  
  25. [golang]
  26. format = '[ $version](bold cyan) '
  27.  
  28. [kubernetes]
  29. symbol = '☸'
  30. disabled = false
  31. detect_files = ['k8s', 'Dockerfile']
  32. detect_extensions = ['yaml']
  33. format = '[$symbol$context( \($namespace\))]($style) '
  34. [kubernetes.context_aliases]
  35. 'arn:aws:eks:us-west-2:123:cluster/gal-kub-demo-cluster' = 'gal'
  36.  
  37. [palettes.catppuccin_mocha]
  38. rosewater = "#f5e0dc"
  39. flamingo = "#f2cdcd"
  40. pink = "#f5c2e7"
  41. mauve = "#cba6f7"
  42. red = "#f38ba8"
  43. maroon = "#eba0ac"
  44. peach = "#fab387"
  45. yellow = "#f9e2af"
  46. green = "#a6e3a1"
  47. teal = "#94e2d5"
  48. sky = "#89dceb"
  49. sapphire = "#74c7ec"
  50. blue = "#89b4fa"
  51. lavender = "#b4befe"
  52. text = "#cdd6f4"
  53. subtext1 = "#bac2de"
  54. subtext0 = "#a6adc8"
  55. overlay2 = "#9399b2"
  56. overlay1 = "#7f849c"
  57. overlay0 = "#6c7086"
  58. surface2 = "#585b70"
  59. surface1 = "#45475a"
  60. surface0 = "#313244"
  61. base = "#1e1e2e"
  62. mantle = "#181825"
  63. crust = "#11111b"
Tags: terminal
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement