docs: fixed wrong config example in README.md
This commit is contained in:
parent
44eb9cbff9
commit
5026eeff8b
|
@ -90,15 +90,15 @@ Lualine defines two kinds of seperators. One is for sections and other is for co
|
||||||
They require powerline patched fonts. But you can easily change yours to something else like below
|
They require powerline patched fonts. But you can easily change yours to something else like below
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
lualine.section_separators = {'', ''}
|
lualine.options.section_separators = {'', ''}
|
||||||
lualine.component_separators = {'', ''}
|
lualine.options.component_separators = {'', ''}
|
||||||
```
|
```
|
||||||
|
|
||||||
or disable it
|
or disable it
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
lualine.section_separators = nil
|
lualine.options.section_separators = nil
|
||||||
lualine.component_separators = nil
|
lualine.options.component_separators = nil
|
||||||
```
|
```
|
||||||
|
|
||||||
### Changing components in lualine sections
|
### Changing components in lualine sections
|
||||||
|
|
Loading…
Reference in New Issue