Add missing theme
to toml config
This commit is contained in:
parent
29f77b9c5f
commit
59c59deb46
1 changed files with 2 additions and 1 deletions
|
@ -28,6 +28,7 @@ pub struct Config {
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
#[serde(rename_all = "kebab-case")]
|
#[serde(rename_all = "kebab-case")]
|
||||||
struct TomlConfig {
|
struct TomlConfig {
|
||||||
|
theme: Option<String>,
|
||||||
lsp_progress: Option<bool>,
|
lsp_progress: Option<bool>,
|
||||||
keys: Option<HashMap<String, HashMap<String, String>>>,
|
keys: Option<HashMap<String, HashMap<String, String>>>,
|
||||||
}
|
}
|
||||||
|
@ -41,7 +42,7 @@ impl<'de> Deserialize<'de> for Config {
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
global: GlobalConfig {
|
global: GlobalConfig {
|
||||||
lsp_progress: config.lsp_progress.unwrap_or(true),
|
lsp_progress: config.lsp_progress.unwrap_or(true),
|
||||||
theme: None,
|
theme: config.theme,
|
||||||
},
|
},
|
||||||
keymaps: config
|
keymaps: config
|
||||||
.keys
|
.keys
|
||||||
|
|
Loading…
Reference in a new issue