Skip to content
forked from morhetz/gruvbox

Retro groove color scheme for Vim

Notifications You must be signed in to change notification settings

xuyangy/gruvbox

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

gruvbox

Retro groove color scheme for Vim.

Gruvbox is heavily inspired by badwolf, jellybeans and solarized.

Designed as a bright theme with pastel 'retro groove' colors and light/dark mode switching in the way of solarized. The main focus when developing Gruvbox is to keep colors easily distinguishable, contrast enough and still pleasant for the eyes.

Screenshots

Color scheme is in early development stage, so this could serve as working preview.

Dark mode

Screenshot

Light mode

Screenshot

Features

Usage

gruvbox comes in two modes, dark and light. To toggle between them with F5 you can add these to your .vimrc

map <F5> :call ToggleBg()<CR>
function! ToggleBg()
	if &background == 'dark'
		set bg=light
	else
		set bg=dark
	endif
endfunc

Just setting background to an appropriate value would work as well

set bg=dark    " Setting dark mode
set bg=light   " Setting light mode

ToDo

  • Terminal low-color mode (<256)
  • More fyletype specific highlighting
  • Customizable options (overrides, background switch, etc.)
  • Powerline colors

License

MIT/X11

About

Retro groove color scheme for Vim

Resources

Stars

Watchers

Forks

Packages

No packages published