mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-28 15:56:28 +00:00
docs(preset): New preset "Plain Text Symbol" (#2749)
* Add plain text preset * Add git symbols to plain text symbols
This commit is contained in:
parent
5556350d84
commit
a16e29cfb7
BIN
docs/.vuepress/public/presets/plain-text-symbols-after.png
Normal file
BIN
docs/.vuepress/public/presets/plain-text-symbols-after.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
BIN
docs/.vuepress/public/presets/plain-text-symbols-before.png
Normal file
BIN
docs/.vuepress/public/presets/plain-text-symbols-before.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
@ -214,3 +214,128 @@ format = '\[[$symbol($version)]($style)\]'
|
|||||||
[zig]
|
[zig]
|
||||||
format = '\[[$symbol($version)]($style)\]'
|
format = '\[[$symbol($version)]($style)\]'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Plain Text Symbols
|
||||||
|
|
||||||
|
This preset changes the symbols into plain text.
|
||||||
|
If your terminal/font could not render the NerdFonts/emojis, maybe you could try this preset!
|
||||||
|
|
||||||
|
Before (default setting with Fixedsys font):
|
||||||
|
|
||||||
|
![Screenshot of default Starship configuration with Fixedsys font](/presets/plain-text-symbols-before.png)
|
||||||
|
|
||||||
|
After (Plain Text Symbols):
|
||||||
|
|
||||||
|
![Screenshot of Plain Text Symbols preset](/presets/plain-text-symbols-after.png)
|
||||||
|
|
||||||
|
### Configuration
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[character]
|
||||||
|
success_symbol = "[>](bold green)"
|
||||||
|
error_symbol = "[x](bold red)"
|
||||||
|
vicmd_symbol = "[<](bold green)"
|
||||||
|
|
||||||
|
[git_commit]
|
||||||
|
tag_symbol = " tag "
|
||||||
|
|
||||||
|
[git_status]
|
||||||
|
ahead = ">"
|
||||||
|
behind = "<"
|
||||||
|
diverged = "<>"
|
||||||
|
renamed = "r"
|
||||||
|
deleted = "x"
|
||||||
|
|
||||||
|
[aws]
|
||||||
|
symbol = "aws "
|
||||||
|
|
||||||
|
[conda]
|
||||||
|
symbol = "conda "
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "cr "
|
||||||
|
|
||||||
|
[cmake]
|
||||||
|
symbol = "cmake "
|
||||||
|
|
||||||
|
[dart]
|
||||||
|
symbol = "dart "
|
||||||
|
|
||||||
|
[deno]
|
||||||
|
symbol = "deno "
|
||||||
|
|
||||||
|
[dotnet]
|
||||||
|
symbol = ".NET "
|
||||||
|
|
||||||
|
[directory]
|
||||||
|
read_only = " ro"
|
||||||
|
|
||||||
|
[docker_context]
|
||||||
|
symbol = "docker "
|
||||||
|
|
||||||
|
[elixir]
|
||||||
|
symbol = "exs "
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = "elm "
|
||||||
|
|
||||||
|
[git_branch]
|
||||||
|
symbol = "git "
|
||||||
|
|
||||||
|
[golang]
|
||||||
|
symbol = "go "
|
||||||
|
|
||||||
|
[hg_branch]
|
||||||
|
symbol = "hg "
|
||||||
|
|
||||||
|
[java]
|
||||||
|
symbol = "java "
|
||||||
|
|
||||||
|
[julia]
|
||||||
|
symbol = "jl "
|
||||||
|
|
||||||
|
[kotlin]
|
||||||
|
symbol = "kt "
|
||||||
|
|
||||||
|
[nodejs]
|
||||||
|
symbol = "nodejs "
|
||||||
|
|
||||||
|
[memory_usage]
|
||||||
|
symbol = "memory "
|
||||||
|
|
||||||
|
[nim]
|
||||||
|
symbol = "nim "
|
||||||
|
|
||||||
|
[nix_shell]
|
||||||
|
symbol = "nix "
|
||||||
|
|
||||||
|
[ocaml]
|
||||||
|
symbol = "ml "
|
||||||
|
|
||||||
|
[package]
|
||||||
|
symbol = "pkg "
|
||||||
|
|
||||||
|
[perl]
|
||||||
|
symbol = "pl "
|
||||||
|
|
||||||
|
[php]
|
||||||
|
symbol = "php "
|
||||||
|
|
||||||
|
[purescript]
|
||||||
|
symbol = "purs "
|
||||||
|
|
||||||
|
[python]
|
||||||
|
symbol = "py "
|
||||||
|
|
||||||
|
[ruby]
|
||||||
|
symbol = "rb "
|
||||||
|
|
||||||
|
[rust]
|
||||||
|
symbol = "rs "
|
||||||
|
|
||||||
|
[scala]
|
||||||
|
symbol = "scala "
|
||||||
|
|
||||||
|
[swift]
|
||||||
|
symbol = "swift "
|
||||||
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user