Removing this prevented EyelinerPrimary and EyelinerSecondary highlight group overrides from working properly in cases where the plugin is loaded after the override. An example of this is if you lazy-load the plugin after your colorscheme has been set up.
This might also relate to the recent discussion in issue #2, since adding default = true means that the user-defined highlight group override (outside of plugin's setup call) would be the source of truth if it exists.
The
default
argument in the:hi
calls were removed in the recent refactor commit (not sure if that was intentional): https://github.com/jinh0/eyeliner.nvim/commit/d1adaaeb292644dfb7958d3dbc8cace8315ea3e5Removing this prevented
EyelinerPrimary
andEyelinerSecondary
highlight group overrides from working properly in cases where the plugin is loaded after the override. An example of this is if you lazy-load the plugin after your colorscheme has been set up.This might also relate to the recent discussion in issue #2, since adding
default = true
means that the user-defined highlight group override (outside of plugin'ssetup
call) would be the source of truth if it exists.