ndreas / gruvbox.nvim

Lua port of the most famous vim colorscheme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gruvbox.nvim

A port of gruvbox community theme to lua with treesitter support!

Please note that this plugin is under active development right now, so the status for it is still alpha. Please file issues if you find any bugs.

Installing

Using vim-plug

Plug 'rktjmp/lush.nvim'
Plug 'npxbr/gruvbox.nvim'

Using packer

use {"npxbr/gruvbox.nvim", requires = {"rktjmp/lush.nvim"}}

Usage

Inside init.vim

set background=dark " or light if you want light mode
colorscheme gruvbox

Inside init.lua

vim.o.background = "dark" -- or "light" for light mode
vim.cmd([[colorscheme gruvbox]])

Configuration

all g:gruvbox_ configs are the same as the original one except for g:gruvbox_guisp_fallback

Additional supported plugins

More to be added..

Screenshots

dark mode

Screenshot-from-2021-02-25-11-41-18.png

light mode

Screenshot-from-2021-02-25-11-41-33.png

About

Lua port of the most famous vim colorscheme

License:MIT License


Languages

Language:Lua 99.2%Language:Vim Script 0.8%