You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.
Hi, I've faced the same issue and after spending some time digging around the code I found the culprit. Looks like there is vim.defer_fn call after base theme is loaded. My solution is to defer my overrides after 101 ms which would supersede the defaults:
require("onedark").setup()
local utils = require("onedark.util")
vim.defer_fn(function()
utils.syntax({ NvimTreeFolderName = { fg = colors.blue, bg = colors.red } })
end, 101) -- 101 is the important part here
Hi, I am not able to overwrite the vim-illuminate highlights with the following configuration
Thanks for the colorscheme
The text was updated successfully, but these errors were encountered: