22 lines
602 B
Lua
22 lines
602 B
Lua
return {
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
opts = function()
|
|
return {
|
|
options = {
|
|
disabled_filetypes = { statusline = { "dashboard", "alpha", "starter" } },
|
|
component_separators = { left = "", right = "" },
|
|
section_separators = { left = "", right = "" },
|
|
},
|
|
sections = {
|
|
lualine_y = {
|
|
{ "progress", separator = " ", padding = { left = 1, right = 1 } },
|
|
},
|
|
lualine_z = {
|
|
{ "location", padding = { left = 1, right = 1 } },
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
}
|