1return { 2 { 3 "nvim-lualine/lualine.nvim", 4 config = function() 5 vim.opt.cmdheight = 0 6 vim.opt.laststatus = 3 7 require("lualine").setup({ 8 options = { 9 component_separators = { left = "|", right = "|" }, 10 section_separators = "", 11 }, 12 }) 13 end, 14 }, 15}