A colorscheme for neovim, written in Lua, based on the colors used in the code snippets from the React docs. The colors can be found here.
You need to be running neovim 0.5.0+
To take full advantage of the JavaScript and JSX highlighting this colorscheme offers, you'll need to add the following plugins:
Install via package manager:
" If you are using Vim-Plug
Plug 'tjdevries/colorbuddy.nvim'
Plug 'pangloss/vim-javascript' " Only needed if you want extended JS highlighting
Plug 'MaxMEllon/vim-jsx-pretty' " Only needed if you want JSX highlighting
Plug 'taphill/glamour.nvim'
-- If you are using Packer
use 'tjdevries/colorbuddy.nvim'
use 'pangloss/vim-javascript' -- Only needed if you want extended JS highlighting
use 'MaxMEllon/vim-jsx-pretty' -- Only needed if you want JSX highlighting
use 'taphill/glamour.nvim'
Enable the colorscheme:
" Vim-Script:
colorscheme glamour_nvim
-- Lua:
require('colorbuddy').colorscheme('glamour_nvim')