summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Prokhorenkov <andrew.prokhorenkov@gmail.com>2020-02-01 16:16:10 -0600
committerGitHub <noreply@github.com>2020-02-01 17:16:10 -0500
commit9229a48bc9bade2346d6998a3bae72ffa860c89d (patch)
treefc25ba49d0648991665787f814a1595dd530218c
parent8555143533a59dccba992b87573501d3bc14a2ed (diff)
fix(haskell): Add the Haskell module to the default prompt order (#893)
-rw-r--r--docs/config/README.md2
-rw-r--r--src/configs/starship_root.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/config/README.md b/docs/config/README.md
index ebcaa6004..1c2ca272e 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 357fe8cfa..14f171792 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",