Skip to content

Latest commit

 

History

History
79 lines (54 loc) · 1.2 KB

File metadata and controls

79 lines (54 loc) · 1.2 KB

Reactor Colorscheme

Screenshots

Rust

rust-lang

HTML

html

Javascript

javascript

CSS

css

Lua

lua

Telescope

telescope

Installation

Packer

use { 'NachiketNamjoshi/reactor.nvim', run = './install.sh' }

Plug

Plug 'NachiketNamjoshi/reactor.nvim', { 'do': './install.sh' }

Usage

Basic Colorscheme

You can use the theme just like other themes:

Vimscript:

colorscheme reactor

Lua:

vim.cmd.colorscheme("reactor")
-- vim.cmd.colorscheme "reactor"
-- vim.cmd("colorscheme reactor")
-- vim.cmd[[colorscheme reactor]]

Lualine

You will need to require the Lualine theme from the colors in your Lualine config:

local ok, reactor = pcall(require, 'reactor_lualine')
if ok then
  lualine_opts['theme'] = reactor.LualineTheme;
else
  lualine_opts['theme'] = 'some_other_theme'
end

lualine.setup {
  options = lualine_opts
}

Credits