This commit is contained in:
siduck 2022-05-03 15:41:40 +05:30
parent d534b3492e
commit ffa56f0766
2 changed files with 5 additions and 7 deletions

View file

@ -20,4 +20,7 @@ end
local user_highlights = require("core.utils").load_config().ui.hl_override
highlights = merge_tb(highlights, user_highlights)
return highlights
-- finally set all highlights :D
for hl, col in pairs(highlights) do
vim.api.nvim_set_hl(0, hl, col)
end