lualine add notice for recording of macros
This commit is contained in:
parent
2a6fb440ab
commit
e225a002b0
|
@ -585,12 +585,22 @@ return {
|
||||||
lazy = false,
|
lazy = false,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
'nvim-tree/nvim-web-devicons',
|
'nvim-tree/nvim-web-devicons',
|
||||||
'NvChad/ui', -- load after nvchad ui
|
'yavorski/lualine-macro-recording.nvim',
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
-- TODO: add lsp module for lualine
|
require('lualine').setup {
|
||||||
-- Maybe we can steal modules from the nvchad ui
|
options = {
|
||||||
require('lualine').setup {}
|
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,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue