-
I am interested in creating a base16 colorscheme that use's my works branding colors as the base. It would be really nice if there was a way to live update a buffer with the changed theme without having to quit and reopen nvim. Has anyone accomplished this before? |
Beta Was this translation helpful? Give feedback.
Answered by
mhanberg
Jul 10, 2024
Replies: 1 comment 1 reply
-
It's a bit complex, but take a look at the new dev mode in 'folke/tokyonightnvim. It would need adjustments, though, depending on how you organize color scheme files. Also it utilizes 'mini.hipatterns' from 'mini.nvim', so you should be half way there :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Roger, I think I figured something out.
I have a couple autocmds in a lazy plugin (random spot that would get run on bootup) and then another file that has the palette
motchvim.simple.colors
.We reset the colors module when we reload and simply setup the base16 theme again.
Thanks for the tip!