diff --git a/lua/custom/plugins/ui.lua b/lua/custom/plugins/ui.lua index 41821f6..6f8a1f2 100644 --- a/lua/custom/plugins/ui.lua +++ b/lua/custom/plugins/ui.lua @@ -585,12 +585,22 @@ return { lazy = false, dependencies = { 'nvim-tree/nvim-web-devicons', - 'NvChad/ui', -- load after nvchad ui + 'yavorski/lualine-macro-recording.nvim', }, config = function() - -- TODO: add lsp module for lualine - -- Maybe we can steal modules from the nvchad ui - require('lualine').setup {} + require('lualine').setup { + options = { + theme = 'horizon', + }, + sections = { + lualine_a = { 'mode' }, + lualine_b = { 'branch', 'diff', 'diagnostics' }, + lualine_c = { { 'macro_recording', color = { fg = '#ff9e3b' } }, 'filename', 'locatoin' }, + lualine_x = { 'encoding', 'fileformat', 'filetype' }, + lualine_y = { 'progress' }, + lualine_z = { 'location' }, + }, + } end, }, {