refactor: lazy.nvim

This commit is contained in:
max miliano 2024-02-22 10:11:25 -03:00
parent ab203b05c5
commit 149f77e1fc
3 changed files with 6 additions and 6 deletions

View file

@ -918,9 +918,9 @@ highlights:
- lazy.nvim:
- name: LazyButton
fg: base0
bg: base01
bg: base02
- name: LazyButtonActive
fg: base01
bg: base02
reverse: true
- name: LazyReasonStart
fg: cyan

View file

@ -917,9 +917,9 @@ highlights:
- lazy.nvim:
- name: LazyButton
fg: base0
bg: base01
bg: base02
- name: LazyButtonActive
fg: base01
bg: base02
reverse: true
- name: LazyReasonStart
fg: cyan

View file

@ -631,8 +631,8 @@ M.set_highlight = function(colors, config)
end
if config.plugins['lazy.nvim'] then
nvim_set_hl('LazyButton', { fg = colors.base0, bg = colors.base01 })
nvim_set_hl('LazyButtonActive', { fg = colors.base01, reverse = true })
nvim_set_hl('LazyButton', { fg = colors.base0, bg = colors.base02 })
nvim_set_hl('LazyButtonActive', { bg = colors.base02, reverse = true })
nvim_set_hl('LazyReasonStart', { fg = colors.cyan })
end
if config.on_highlight then