dotfiles/nvim/lua/plugins/lualine.lua

13 lines
304 B
Lua
Raw Permalink Normal View History

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