summaryrefslogtreecommitdiffstats
path: root/docs/es-ES/presets
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2020-01-15 12:23:25 -0500
committerGitHub <noreply@github.com>2020-01-15 12:23:25 -0500
commitddfcee38095ea117341cd4c6744d74511b33190a (patch)
tree8afdab09d9feab7ca8f95c1f8be34cd9d672f814 /docs/es-ES/presets
parent1f9059c6110394ce21be9b5eda08904174f7400d (diff)
docs(i18n): Update translated docs (#792)
Diffstat (limited to 'docs/es-ES/presets')
-rw-r--r--docs/es-ES/presets/README.md61
1 files changed, 61 insertions, 0 deletions
diff --git a/docs/es-ES/presets/README.md b/docs/es-ES/presets/README.md
new file mode 100644
index 000000000..71af06252
--- /dev/null
+++ b/docs/es-ES/presets/README.md
@@ -0,0 +1,61 @@
+# Presets
+
+Here is a collection of community-submitted configuration presets for Starship. If you have a preset to share, please [submit a PR](https://github.com/starship/starship/edit/master/docs/presets/README.md) updating this file! 😊
+
+## Nerd Font Symbols
+
+This preset doesn't change anything except for the symbols used for each module. If emojis aren't your thing, this might catch your eye!
+
+![Screenshot of Nerd Font Symbols preset](/presets/nerd-font-symbols.png)
+
+### Prerequisitos
+
+- A [Nerd Font](https://www.nerdfonts.com/) installed and enabled in your terminal (the example uses Fira Code Nerd Font)
+
+### Configuración
+
+```toml
+[aws]
+symbol = " "
+
+[battery]
+full_symbol = ""
+charging_symbol = ""
+discharging_symbol = ""
+
+[conda]
+symbol = " "
+
+[git_branch]
+symbol = " "
+
+[golang]
+symbol = " "
+
+[hg_branch]
+symbol = " "
+
+[java]
+symbol = " "
+
+[memory_usage]
+symbol = " "
+
+[nodejs]
+symbol = " "
+
+[package]
+symbol = " "
+
+[php]
+symbol = " "
+
+[python]
+symbol = " "
+
+[ruby]
+symbol = " "
+
+[rust]
+symbol = " "
+```