diff options
author | Cody Hiar <cody@hiar.ca> | 2021-11-10 14:09:24 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-11-10 14:09:24 -0700 |
commit | 1d208e292b66b9bc4e39c3b29716559f8c1f9a3f (patch) | |
tree | 8a1de83d75879d4ea36905bba1451cbea620785e /stow/starship |
Initial Commit
Diffstat (limited to 'stow/starship')
-rw-r--r-- | stow/starship/.config/starship.toml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/stow/starship/.config/starship.toml b/stow/starship/.config/starship.toml new file mode 100644 index 0000000..27edf54 --- /dev/null +++ b/stow/starship/.config/starship.toml @@ -0,0 +1,54 @@ +format = """ +$shlvl\ +$kubernetes\ +$hostname\ +$directory\ +$vcsh\ +$git_branch\ +$git_commit\ +$git_state\ +$git_metrics\ +$git_status\ +$docker_context\ +$package\ +$cmake\ +$deno\ +$python\ +$red\ +$terraform\ +$nix_shell\ +$memory_usage\ +$aws\ +$gcloud\ +$openstack\ +$env_var\ +$custom\ +$line_break\ +$lua\ +$jobs\ +$battery\ +$time\ +$status\ +$shell\ +$character""" + +[git_branch] +style = "bold white" +format = "[$branch]($style) " + +[directory] +truncate_to_repo = false + +[character] +success_symbol = "[](bold cyan) " +error_symbol = "[](bold red) " + +[python] +style = "bold purple" +format = '[${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)' + +[nix_shell] +format = '[$state( \($name\))]($style) ' + +[hostname] +ssh_only = true |