When the colors are changed, open terminals are not automatically updated to the new colors. If I open a new terminal, it gets the updated colors. I'm using wallust and for reference, here is my plugin config:
return {
'RedsXDD/neopywal.nvim',
name = 'neopywal',
lazy = false,
priority = 1000,
opts = {
use_palette = 'wallust',
terminal_colors = true,
transparent_background = true,
styles = {
comments = { 'italic' },
conditionals = {},
loops = {},
functions = {},
keywords = {},
includes = {},
strings = {},
variables = {},
numbers = {},
booleans = {},
types = {},
operators = {},
},
},
init = function()
vim.cmd.colorscheme 'neopywal-dark'
end,
}
When the colors are changed, open terminals are not automatically updated to the new colors. If I open a new terminal, it gets the updated colors. I'm using
wallustand for reference, here is my plugin config: