monokai.nvim
monokai.nvim copied to clipboard
Green function colors dissapeared
I was using this plugin and when I updated it last night, it appears that the green function colors dissapeared. Any ideas? In the above config file functions like setup and use used to be the typical monokai green.
Confirmed by going back to commit 45427b20f29ad1e7ce8bba3152428d6928ae8f09 and it is what it should be:

ditto, same is happening to me
define custom hl group to go back to green, I personally did this after encountering the update (not all of these were the defaults)
monokai.setup {
custom_hlgroups = {
["@function.call"] = { fg = palette.green, style = 'italic' },
["@text.todo"] = { fg = palette.orange, style = 'bold' },
["@todo"] = { fg = palette.orange, style = 'bold' },
["@include"] = { fg = palette.pink, style = 'italic' },
["@define"] = { fg = palette.pink, style = 'italic' },
["@preproc"] = { fg = palette.pink, style = 'bold' }
}
}