2021-05-30 00:57:04 +00:00
|
|
|
# config set
|
2021-10-30 17:59:19 +00:00
|
|
|
|
2021-05-30 00:57:04 +00:00
|
|
|
Sets a value in the config
|
|
|
|
|
|
|
|
## Usage
|
2021-10-30 17:59:19 +00:00
|
|
|
|
2021-05-30 00:57:04 +00:00
|
|
|
```shell
|
2021-10-30 17:59:19 +00:00
|
|
|
> config set <key> <value> {flags}
|
|
|
|
```
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
## Parameters
|
2021-10-30 17:59:19 +00:00
|
|
|
|
|
|
|
- `<key>` variable name to set
|
|
|
|
- `<value>` value to use
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
## Flags
|
2021-10-30 17:59:19 +00:00
|
|
|
|
|
|
|
- -h, --help: Display this help message
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
## Examples
|
2021-10-30 17:59:19 +00:00
|
|
|
|
|
|
|
Set auto pivoting
|
|
|
|
|
2021-05-30 00:57:04 +00:00
|
|
|
```shell
|
|
|
|
> config set pivot_mode always
|
2021-10-30 17:59:19 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Set line editor options
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
> config set line_editor [[edit_mode, completion_type]; [emacs circular]]
|
2021-10-30 17:59:19 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Set coloring options
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
```shell
|
2021-10-30 17:59:19 +00:00
|
|
|
> config set color_config [[header_align header_color]; [left white_bold]]
|
|
|
|
```
|
|
|
|
|
|
|
|
Set nested options
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
> config set color_config.header_color white
|
2021-10-30 17:59:19 +00:00
|
|
|
```
|