lualine: fix separator options to work with recent versions of lualine

This commit is contained in:
Laszlo Bacsi 2025-07-03 17:06:12 +02:00
commit 06b5903b53
No known key found for this signature in database
GPG key ID: 7AC6E86EE9E48853
2 changed files with 3 additions and 2 deletions

View file

@ -63,8 +63,8 @@ in {
options = {
icons_enabled = mkDefault cfg.icons.enable;
theme = mkDefault cfg.theme;
component_separators = mkDefault [cfg.componentSeparator.left cfg.componentSeparator.right];
section_separators = mkDefault [cfg.sectionSeparator.left cfg.sectionSeparator.right];
component_separators = mkDefault cfg.componentSeparator;
section_separators = mkDefault cfg.sectionSeparator;
globalstatus = mkDefault cfg.globalStatus;
refresh = mkDefault cfg.refresh;
always_divide_middle = mkDefault cfg.alwaysDivideMiddle;