2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2021-02-20 14:40:49 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct ShellConfig<'a> {
|
|
|
|
pub format: &'a str,
|
|
|
|
pub bash_indicator: &'a str,
|
|
|
|
pub fish_indicator: &'a str,
|
|
|
|
pub zsh_indicator: &'a str,
|
|
|
|
pub powershell_indicator: &'a str,
|
|
|
|
pub ion_indicator: &'a str,
|
|
|
|
pub elvish_indicator: &'a str,
|
2021-02-27 18:55:27 +00:00
|
|
|
pub tcsh_indicator: &'a str,
|
2021-02-20 14:40:49 +00:00
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for ShellConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2021-02-20 14:40:49 +00:00
|
|
|
ShellConfig {
|
|
|
|
format: "$indicator ",
|
|
|
|
bash_indicator: "bsh",
|
|
|
|
fish_indicator: "fsh",
|
|
|
|
zsh_indicator: "zsh",
|
|
|
|
powershell_indicator: "psh",
|
|
|
|
ion_indicator: "ion",
|
|
|
|
elvish_indicator: "esh",
|
2021-02-27 18:55:27 +00:00
|
|
|
tcsh_indicator: "tsh",
|
2021-02-20 14:40:49 +00:00
|
|
|
disabled: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|