dotfiles/.config/nvim/lua/plugins/lualine.lua
2023-10-20 12:07:23 +02:00

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,
},
}