2021-04-05 14:18:43 +08:00
|
|
|
# Configuration
|
2021-06-06 20:45:59 +08:00
|
|
|
|
2021-08-16 20:19:05 +08:00
|
|
|
To override global configuration parameters, create a `config.toml` file located in your config directory:
|
|
|
|
|
|
|
|
* Linux and Mac: `~/.config/helix/config.toml`
|
|
|
|
* Windows: `%AppData%\helix\config.toml`
|
2021-06-19 19:19:31 +08:00
|
|
|
|
2021-06-18 11:57:36 +08:00
|
|
|
## LSP
|
|
|
|
|
2021-06-21 03:31:03 +08:00
|
|
|
To display all language server messages in the status line add the following to your `config.toml`:
|
2021-06-18 11:57:36 +08:00
|
|
|
```toml
|
2021-06-21 03:31:03 +08:00
|
|
|
[lsp]
|
|
|
|
display-messages = true
|
2021-06-18 11:57:36 +08:00
|
|
|
```
|