taphill / glamour.nvim

A colorscheme for neovim based on the code snippets from React's docs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

glamour.nvim

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.

Requirements

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:

pangloss/vim-javascript

MaxMEllon/vim-jsx-pretty

Installation

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')

About

A colorscheme for neovim based on the code snippets from React's docs.

License:MIT License


Languages

Language:Lua 99.8%Language:Vim Script 0.2%