13 lines
304 B
Lua
13 lines
304 B
Lua
return {
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
opts = function(_, opts)
|
|
-- Remove the git branch because it's already shown in tmux.
|
|
table.remove(opts.sections.lualine_b)
|
|
|
|
-- Remove the clock because I don't want it there.
|
|
table.remove(opts.sections.lualine_z)
|
|
end,
|
|
},
|
|
}
|