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