2020-07-07 22:45:32 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
2019-11-06 12:59:12 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct NixShellConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub impure_msg: &'a str,
|
|
|
|
pub pure_msg: &'a str,
|
2019-11-06 12:59:12 +00:00
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for NixShellConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
NixShellConfig {
|
2020-07-07 22:45:32 +00:00
|
|
|
format: "via [$symbol$state( \\($name\\))]($style) ",
|
|
|
|
symbol: "❄️ ",
|
|
|
|
style: "bold blue",
|
|
|
|
impure_msg: "impure",
|
|
|
|
pure_msg: "pure",
|
2019-11-06 12:59:12 +00:00
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|