Closed idelice closed 3 months ago
Hello @idelice ,
If you change CursorLineNr = { fg = "#ff9e64", style = "bold" }
to CursorLineNr = { fg = "#ff9e64", bold = true }
it should resolve the error.
The reason is because style
isn't a valid option when calling vim.api.nvim_set_hl
.
Up until 3.7.0, these were being converted into valid options during setup. I'd converted all the instances within the plugin before removing that code, but I hadn't considered anyone would have them in their own overrides. Sorry about that!
Hello @idelice ,
If you change
CursorLineNr = { fg = "#ff9e64", style = "bold" }
toCursorLineNr = { fg = "#ff9e64", bold = true }
it should resolve the error.The reason is because
style
isn't a valid option when callingvim.api.nvim_set_hl
.Up until 3.7.0, these were being converted into valid options during setup. I'd converted all the instances within the plugin before removing that code, but I hadn't considered anyone would have them in their own overrides. Sorry about that!
Thank you. That fixed it!
Description
Neovim version?
0.10.0
What should happen?
No error when opening nvim
What happened instead?
Error
Your configuration