From 9229a48bc9bade2346d6998a3bae72ffa860c89d Mon Sep 17 00:00:00 2001 From: Andrew Prokhorenkov Date: Sat, 1 Feb 2020 16:16:10 -0600 Subject: [PATCH] fix(haskell): Add the Haskell module to the default prompt order (#893) --- docs/config/README.md | 2 +- src/configs/starship_root.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/config/README.md b/docs/config/README.md index ebcaa600..1c2ca272 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -99,11 +99,11 @@ prompt_order = [ "git_commit", "git_state", "git_status", - "haskell", "hg_branch", "package", "dotnet", "golang", + "haskell", "java", "nodejs", "php", diff --git a/src/configs/starship_root.rs b/src/configs/starship_root.rs index 357fe8cf..14f17179 100644 --- a/src/configs/starship_root.rs +++ b/src/configs/starship_root.rs @@ -31,6 +31,7 @@ impl<'a> RootModuleConfig<'a> for StarshipRootConfig<'a> { // (Let's keep these sorted alphabetically) "dotnet", "golang", + "haskell", "java", "nodejs", "php",