Skip to content

Commit

Permalink
Fix ColorScheme autocmd
Browse files Browse the repository at this point in the history
  • Loading branch information
notomo committed Jun 13, 2024
1 parent 1b7bce5 commit d09fb8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/piemenu/view/highlight_group.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ local group = vim.api.nvim_create_augroup("piemenu", {})
vim.api.nvim_create_autocmd({ "ColorScheme" }, {
group = group,
pattern = { "*" },
callback = setup_highlight_groups,
callback = function()
setup_highlight_groups()
end,
})

return setup_highlight_groups()

0 comments on commit d09fb8c

Please sign in to comment.