A Neovim theme with vivid colors for use with lush.nvim.
For the original vimscript version, see the legacy
branch.
Install the theme as well as rktjmp/lush.nvim
with the package manager of
your choice, then set the color scheme to chroma
.
E.g. with lazy.nvim:
{
'crater2150/vim-theme-chroma',
lazy = false,
priority = 1000,
dependencies = { 'rktjmp/lush.nvim' },
config = function() vim.cmd.colorscheme("chroma") end
},
Lush based themes can be easily modified without copying the whole theme. See lush.nvim's documentation for how to do this.
Chroma includes a theme for lualine.nvim:
require('lualine').setup {
options = { theme = require('chroma-theme.lualine') },
...