summaryrefslogtreecommitdiffstats
path: root/src/configs/python.rs
blob: 1c51e15b3d25b93a82ec7d8095046248c84d5292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use crate::config::{ModuleConfig, RootModuleConfig};

use starship_module_config_derive::ModuleConfig;

#[derive(Clone, ModuleConfig)]
pub struct PythonConfig<'a> {
    pub pyenv_version_name: bool,
    pub python_binary: &'a str,
    pub scan_for_pyfiles: bool,
    pub format: &'a str,
    pub style: &'a str,
    pub symbol: &'a str,
    pub disabled: bool,
}

impl<'a> RootModuleConfig<'a> for PythonConfig<'a> {
    fn new() -> Self {
        PythonConfig {
            pyenv_version_name: false,
            python_binary: "python",
            scan_for_pyfiles: true,
            format: "via [$symbol$version( \\($virtualenv\\))]($style) ",
            style: "yellow bold",
            symbol: "🐍 ",
            disabled: false,
        }
    }
}