Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.04 KB

README.md

File metadata and controls

39 lines (27 loc) · 1.04 KB

vim-theme-chroma — Lush version

A Neovim theme with vivid colors for use with lush.nvim.

For the original vimscript version, see the legacy branch.

Installation / Usage

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
},

Customizing

Lush based themes can be easily modified without copying the whole theme. See lush.nvim's documentation for how to do this.

Plugin support

Chroma includes a theme for lualine.nvim:

require('lualine').setup {
  options = { theme  = require('chroma-theme.lualine') },
	...