helix-mirror/book/src/configuration.md

28 lines
929 B
Markdown
Raw Normal View History

2021-04-05 10:18:43 +04:00
# Configuration
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 15:19:31 +04:00
## Editor
`[editor]` section of the config.
| Key | Description | Default |
|--|--|---------|
| `scrolloff` | Number of lines of padding around the edge of the screen when scrolling. | `3` |
| `mouse` | Enable mouse mode. | `true` |
| `middle-click-paste` | Middle click paste support. | `true` |
| `scroll-lines` | Number of lines to scroll per scroll wheel step. | `3` |
| `shell` | Shell to use when running external commands. | Unix: `["sh", "-c"]`<br/>Windows: `["cmd", "/C"]` |
| `line-number` | Line number display (`absolute`, `relative`) | `absolute` |
## LSP
2021-06-20 23:31:03 +04:00
To display all language server messages in the status line add the following to your `config.toml`:
```toml
2021-06-20 23:31:03 +04:00
[lsp]
display-messages = true
```