mirror of
https://github.com/helix-editor/helix.git
synced 2025-01-18 21:17:08 +04:00
Use kebab-case for config
This commit is contained in:
parent
bbefc1db63
commit
a3cb79ebaa
@ -4,7 +4,7 @@ ## LSP
|
||||
|
||||
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 New Issue
Block a user