Sorry, didn't mean to scare you.
Boo is a colorscheme for Neovim with handcrafted-artisanal support for LSP, Treesitter.
- To use subtle changes in colors to help lessen the syntax noise.
- Brightness range on syntax to ramp up to values and variables.
- Neovim 0.4
termguicolorsrequired (:h 'termguicolors')
vimscript
if (has("termguicolors"))
set termguicolors
endiflua
if vim.fn.has("termguicolors") then
vim.opt.termguicolors = true
endPlug 'rockerBOO/boo-colorscheme-nvim'use 'rockerBOO/boo-colorscheme-nvim'Then in your init.vim or init.lua you can set it to use it as your color scheme.
colorscheme booOr in lua with the use function. This allows you to pass options like { theme = "radioactive_waste" }.
require("boo-colorscheme").use({})require("boo-colorscheme").use({
italic = true, -- toggle italics
theme = "boo"
})or in vimscript
let g:boo_colorscheme_italic = trueThese are full colorschemes so you can call them directly
colorscheme sunset_cloudor
require('boo-colorscheme').use({ theme = 'sunset_cloud' })or set in combination with the colorscheme boo and the following
let g:boo_colorscheme_theme = 'sunset_cloud'Requires a busted supported test runner.
make test-









