Skip to content

Instantly share code, notes, and snippets.

@oguzhalit
Created July 18, 2021 13:27
Show Gist options
  • Save oguzhalit/b04e2b1e6be8ecab4bf4056751a49004 to your computer and use it in GitHub Desktop.
Save oguzhalit/b04e2b1e6be8ecab4bf4056751a49004 to your computer and use it in GitHub Desktop.
Starship Configure
[status]
style = "red bold"
symbol = "πŸ’₯ "
format = '[\[$symbol$status\]]($style) '
disabled = false
[helm]
format = 'via [$symbol($version )]($style)'
symbol = '⎈ '
style = 'bold white'
disabled = false
detect_extensions = []
detect_files = [
'helmfile.yaml',
'Chart.yaml',
]
detect_folders = []
[jobs]
symbol = '✦ '
threshold = 1
format = "[$symbol$number]($style) "
style = 'bold blue'
[terraform]
format = 'via [$symbol$workspace]($style) '
symbol = 'πŸ’  '
style = 'bold 105'
disabled = false
detect_extensions = [
'tf',
'hcl',
]
detect_files = []
detect_folders = ['.terraform']
[nodejs]
symbol = "β¬’ "
style = "bold green"
disabled = false
[python]
pyenv_version_name = false
pyenv_prefix = 'pyenv '
python_binary = [
'python',
'python3',
'python2',
]
format = 'via [${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)'
version_format = 'v${raw}'
style = 'yellow bold'
symbol = '🐍 '
disabled = false
detect_extensions = ['py']
detect_files = [
'requirements.txt',
'.python-version',
'pyproject.toml',
'Pipfile',
'tox.ini',
'setup.py',
'__init__.py',
]
detect_folders = []
[vagrant]
format = 'via [$symbol($version )]($style)'
symbol = '⍱ '
style = 'cyan bold'
disabled = false
detect_extensions = []
detect_files = ['Vagrantfile']
detect_folders = []
[aws]
disabled = true
[username]
style_user = "purple bold"
style_root = "red bold"
format = "[$user]($style) "
disabled = true
show_always = true
[docker_context]
format = "[πŸ‹ $context ](blue bold)"
disabled = false
[kubernetes]
symbol = '☸ '
format = '[$symbol$context \($namespace\)|](bold cyan) '
disabled = false
[gcloud]
disabled = true
[memory_usage]
format = "$symbol[${ram}( | )]($style) "
disabled = false
threshold = -1
symbol = "🐏"
style = "bold dimmed green"
[git_branch]
format = " [$symbol$branch]($style) "
symbol = "🌱 "
style = "bold yellow"
[git_commit]
commit_hash_length = 8
style = "bold white"
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
[git_status]
conflicted = "🏳"
ahead = "πŸŽπŸ’¨"
behind = "😰"
diverged = "😡"
untracked = "🀷"
stashed = "πŸ“¦"
modified = "πŸ“"
staged = '[++\($count\)](green)'
renamed = "πŸ‘…"
deleted = "πŸ—‘"
[character]
success_symbol = "[➜](bold green) "
error_symbol = "[βœ—](bold red) "
[battery]
full_symbol = "πŸ”‹"
charging_symbol = "⚑️"
discharging_symbol = "πŸ’€"
[[battery.display]]
threshold = 15
style = "bold red"
[directory]
truncation_length = 5
format = "πŸ“‚οΈ [$path]($style)[$read_only]($read_only_style) | "
read_only_style = 'red'
read_only = 'πŸ”’'
@oguzhalit
Copy link
Author

Added starship conf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment