Use kebab-case for config
This commit is contained in:
parent
bbefc1db63
commit
a3cb79ebaa
2 changed files with 2 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
To disable language server progress report from being displayed in the status bar add this option to your `config.toml`:
|
||||
```toml
|
||||
lsp_progress = false
|
||||
lsp-progress = false
|
||||
```
|
||||
|
||||
## Theme
|
||||
|
|
|
@ -17,6 +17,7 @@ pub struct Config {
|
|||
}
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
#[serde(rename_all = "kebab-case")]
|
||||
struct TomlConfig {
|
||||
lsp_progress: Option<bool>,
|
||||
keys: Option<HashMap<String, HashMap<String, String>>>,
|
||||
|
|
Loading…
Reference in a new issue