dotfiles/.config/nvim/lua/plugins/lualine.lua

11 lines
423 B
Lua

return {
"nvim-lualine/lualine.nvim",
opts = function(_, opts)
table.insert(opts.options, {
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
})
opts.sections.lualine_y = { { "progress", separator = " ", padding = { left = 1, right = 1 } } }
opts.sections.lualine_z = { { "location", padding = { left = 1, right = 1 } } }
end,
}