feat(lualine): "codedark" theme & remove time

This commit is contained in:
Michel 2023-09-06 19:23:10 +02:00
parent 656580f836
commit 287a1ca3fd
1 changed files with 10 additions and 0 deletions

10
lua/plugins/UI.lua Normal file
View File

@ -0,0 +1,10 @@
return {
{
"nvim-lualine/lualine.nvim",
opts = function(_, opts)
opts.options.theme = "codedark"
opts.sections.lualine_y = { "fileformat", "encoding" }
opts.sections.lualine_z = { "progress", "location" }
end,
},
}