From 287a1ca3fdd29817b04b732c944db79d4830d1c1 Mon Sep 17 00:00:00 2001 From: Michel Date: Wed, 6 Sep 2023 19:23:10 +0200 Subject: [PATCH] feat(lualine): "codedark" theme & remove time --- lua/plugins/UI.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/UI.lua diff --git a/lua/plugins/UI.lua b/lua/plugins/UI.lua new file mode 100644 index 0000000..308dff5 --- /dev/null +++ b/lua/plugins/UI.lua @@ -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, + }, +}