lualine add notice for recording of macros
This commit is contained in:
parent
2a6fb440ab
commit
e225a002b0
|
@ -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,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue