2021-04-05 10:18:43 +04:00
# Configuration
2021-06-06 16:45:59 +04:00
2021-08-16 16:19:05 +04: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 15:19:31 +04:00
2022-03-25 13:05:20 +04:00
> Hint: You can easily open the config file by typing `:config-open` within Helix normal mode.
2022-03-09 22:34:12 +04:00
2021-11-24 10:47:41 +04:00
Example config:
```toml
theme = "onedark"
[editor]
line-number = "relative"
mouse = false
[editor.cursor-shape]
2021-11-29 09:39:04 +04:00
insert = "bar"
normal = "block"
select = "underline"
2021-11-24 10:47:41 +04:00
[editor.file-picker]
hidden = false
```
2021-09-07 08:00:52 +04:00
## Editor
2021-11-24 10:47:41 +04:00
### `[editor]` Section
2021-09-07 08:00:52 +04:00
| 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"]` |
2022-01-25 19:18:01 +04:00
| `line-number` | Line number display: `absolute` simply shows each line's number, while `relative` shows the distance from the current line. When unfocused or in insert mode, `relative` will still show absolute line numbers. | `absolute` |
2021-10-16 17:57:41 +04:00
| `auto-completion` | Enable automatic pop up of auto-completion. | `true` |
2021-10-10 07:32:06 +04:00
| `idle-timeout` | Time in milliseconds since last keypress before idle timers trigger. Used for autocompletion, set to 0 for instant. | `400` |
2021-10-18 10:14:50 +04:00
| `completion-trigger-len` | The min-length of word under cursor to trigger autocompletion | `2` |
2021-11-05 06:25:08 +04:00
| `auto-info` | Whether to display infoboxes | `true` |
2021-11-14 16:26:48 +04:00
| `true-color` | Set to `true` to override automatic detection of terminal truecolor support in the event of a false negative. | `false` |
2021-09-07 08:00:52 +04:00
2022-03-28 05:11:52 +04:00
### `[editor.lsp]` Section
| Key | Description | Default |
| --- | ----------- | ------- |
| `display-messages` | Display LSP progress messages below statusline[^1] | `false` |
[^1]: A progress spinner is always shown in the statusline beside the file path.
2021-11-24 10:47:41 +04:00
### `[editor.cursor-shape]` Section
Defines the shape of cursor in each mode. Note that due to limitations
of the terminal environment, only the primary cursor can change shape.
2022-04-13 08:00:17 +04:00
Valid values for these options are `block` , `bar` , `underline` , or `none` .
2021-11-24 10:47:41 +04:00
2021-11-29 09:39:04 +04:00
| Key | Description | Default |
| --- | ----------- | ------- |
| `normal` | Cursor shape in [normal mode][normal mode] | `block` |
| `insert` | Cursor shape in [insert mode][insert mode] | `block` |
| `select` | Cursor shape in [select mode][select mode] | `block` |
2021-11-24 10:47:41 +04:00
[normal mode]: ./keymap.md#normal-mode
[insert mode]: ./keymap.md#insert-mode
[select mode]: ./keymap.md#select--extend-mode
2022-01-09 09:08:58 +04:00
### `[editor.file-picker]` Section
2021-11-24 10:47:41 +04:00
Sets options for file picker and global search. All but the last key listed in
the default file-picker configuration below are IgnoreOptions: whether hidden
files and files listed within ignore files are ignored by (not visible in) the
helix file picker and global search. There is also one other key, `max-depth`
available, which is not defined by default.
2021-11-20 18:23:36 +04:00
| Key | Description | Default |
|--|--|---------|
|`hidden` | Enables ignoring hidden files. | true
|`parents` | Enables reading ignore files from parent directories. | true
|`ignore` | Enables reading `.ignore` files. | true
|`git-ignore` | Enables reading `.gitignore` files. | true
|`git-global` | Enables reading global .gitignore, whose path is specified in git's config: `core.excludefile` option. | true
|`git-exclude` | Enables reading `.git/info/exclude` files. | true
|`max-depth` | Set with an integer value for maximum depth to recurse. | Defaults to `None` .
2022-02-25 12:36:54 +04:00
### `[editor.auto-pairs]` Section
Enable automatic insertion of pairs to parentheses, brackets, etc. Can be
a simple boolean value, or a specific mapping of pairs of single characters.
| Key | Description |
| --- | ----------- |
| `false` | Completely disable auto pairing, regardless of language-specific settings
| `true` | Use the default pairs: < code > (){}[]''""``</ code >
| Mapping of pairs | e.g. `{ "(" = ")", "{" = "}", ... }`
Example
```toml
[editor.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
'`' = '`'
'< ' = '>'
```
Additionally, this setting can be used in a language config. Unless
the editor setting is `false` , this will override the editor config in
documents with this language.
Example `languages.toml` that adds < > and removes ''
```toml
[[language]]
name = "rust"
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
'`' = '`'
'< ' = '>'
```
2022-03-01 05:06:14 +04:00
### `[editor.search]` Section
Search specific options.
| Key | Description | Default |
|--|--|---------|
| `smart-case` | Enable smart case regex searching (case insensitive unless pattern contains upper case characters) | `true` |
| `wrap-around` | Whether the search should wrap after depleting the matches | `true` |