diff --git a/docs/config/README.md b/docs/config/README.md index a04ae87a..e1c6cdcc 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -46,9 +46,9 @@ This is the list of prompt-wide configuration options. ### Options -| Variable | Default | Description | -| -------------- | ------- | ------------------------------------------------------------------ | -| `add_newline` | `true` | Add a new line before the start of the prompt. | +| Variable | Default | Description | +| -------------- | ----------------------------- | ------------------------------------------------------ | +| `add_newline` | `true` | Add a new line before the start of the prompt. | | `prompt_order` | [link](#default-prompt-order) | Configure the order in which the prompt module occurs. | ### Example @@ -72,6 +72,7 @@ default_prompt_order = [ "git_status", "package", "nodejs", + "ruby", "rust", "python", "golang", diff --git a/src/print.rs b/src/print.rs index 69c56027..dc62dd94 100644 --- a/src/print.rs +++ b/src/print.rs @@ -18,6 +18,7 @@ const DEFAULT_PROMPT_ORDER: &[&str] = &[ "git_status", "package", "nodejs", + "ruby", "rust", "python", "golang",