项目作者: rockerBOO

项目描述 :
Boo is a colorscheme for Neovim with handcrafted support for LSP, Treesitter.
高级语言: Lua
项目地址: git://github.com/rockerBOO/boo-colorscheme-nvim.git
创建时间: 2020-11-12T03:42:04Z
项目社区:https://github.com/rockerBOO/boo-colorscheme-nvim

开源协议:MIT License

下载


Boo

Sorry, didn’t mean to scare you.

Boo is a colorscheme for Neovim with handcrafted-artisanal support for LSP, Treesitter.

Full Screen

Action Status

Goal

  • To use subtle changes in colors to help lessen the syntax noise.
  • Brightness range on syntax to ramp up to values and variables.

Requirements

  • Neovim 0.4
  • termguicolors required (:h 'termguicolors')

vimscript

  1. if (has("termguicolors"))
  2. set termguicolors
  3. endif

lua

  1. if vim.fn.has("termguicolors") then
  2. vim.opt.termguicolors = true
  3. end

Install

Plug

  1. Plug 'rockerBOO/boo-colorscheme-nvim'

Packer

  1. use 'rockerBOO/boo-colorscheme-nvim'

Then in your init.vim or init.lua you can set it to use it as your color scheme.

  1. colorscheme boo

Or in lua with the use function. This allows you to pass options like { theme = "radioactive_waste" }.

  1. require("boo-colorscheme").use({})

Options

  1. require("boo-colorscheme").use({
  2. italic = true, -- toggle italics
  3. theme = "boo"
  4. })

or in vimscript

  1. let g:boo_colorscheme_italic = true

Themes

These are full colorschemes so you can call them directly

  1. colorscheme sunset_cloud

or

  1. require('boo-colorscheme').use({ theme = 'sunset_cloud' })

or set in combination with the colorscheme boo and the following

  1. let g:boo_colorscheme_theme = 'sunset_cloud'

sunset_cloud

Screenshot of the source code showing sunset_cloud

radioactive_waste

Screenshot of the source code showing radioactive waste

forest_stream

Screenshot of the source code showing forest stream

crimson_moonlight

Screenshot of the source code showing crimson_moonlight

Support

Typescript/TSX/JSX

typescript

Rust

rust

Go

go

Telescope

telescope

Colors

Colors Used

Development

Tests

Requires a busted supported test runner.

  • make test -