summaryrefslogtreecommitdiffstats
path: root/src/configs/shell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/shell.rs')
-rw-r--r--src/configs/shell.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configs/shell.rs b/src/configs/shell.rs
index 2f0fc6d15..818130ae3 100644
--- a/src/configs/shell.rs
+++ b/src/configs/shell.rs
@@ -14,6 +14,7 @@ pub struct ShellConfig<'a> {
pub elvish_indicator: &'a str,
pub tcsh_indicator: &'a str,
pub nu_indicator: &'a str,
+ pub xonsh_indicator: &'a str,
pub unknown_indicator: &'a str,
pub disabled: bool,
}
@@ -30,6 +31,7 @@ impl<'a> Default for ShellConfig<'a> {
elvish_indicator: "esh",
tcsh_indicator: "tsh",
nu_indicator: "nu",
+ xonsh_indicator: "xsh",
unknown_indicator: "",
disabled: true,
}