nixvimConfigs/fiesta/setups/ui: update Lualine settings

This commit is contained in:
Gabriel Arazas 2024-10-04 14:30:44 +08:00
parent 40fad229a1
commit ad2f15080f
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -45,29 +45,33 @@ in
# Enable them status bars. # Enable them status bars.
plugins.lualine = { plugins.lualine = {
enable = true; enable = true;
iconsEnabled = true; settings = {
globalstatus = true; options = {
alwaysDivideMiddle = true; icons_enabled = true;
globalstatus = true;
always_divide_middle = true;
};
# Disable the section separators. # Disable the section separators.
sectionSeparators = { section_separators = {
left = ""; left = "";
right = ""; right = "";
}; };
sections = { sections = {
lualine_a = [ "mode" ]; lualine_a = [ "mode" ];
lualine_c = [ lualine_c = [
{ {
name = "filename"; name = "filename";
extraConfig = { extraConfig = {
newfile_status = true; newfile_status = true;
shorting_target = 10; shorting_target = 10;
path = 1; path = 1;
}; };
} }
]; ];
lualine_z = [ "location" ]; lualine_z = [ "location" ];
};
}; };
}; };
}; };