/vim-quantum

A Material color scheme for Vim.

Primary LanguageVim ScriptMIT LicenseMIT

Quantum

A color scheme based on Google's Material Design palette.

NOTE: Quantum requires a terminal or GUI that supports true-colors!

Quantum

quantum

Quantum Black

quantum-black

Installation

Install this color scheme using your preferred Vim plugin manager, then add the following to your vim configuration file:

set background=dark
set termguicolors
colorscheme quantum

Options

NOTE: Configure all options before setting colorscheme!

To swap the default background colors with blacker ones:

let g:quantum_black=1
colorscheme quantum

To italicize the comments:

let g:quantum_italics=1

Status Bar Support

Quantum has themes for both vim-airline as well as lightline.

Install the statusbar plugin of your choice then set the theme in your vim config:

Airline:

let g:airline_theme='quantum'

Lightline:

let g:lightline = {
      \ 'colorscheme': 'quantum',
      \ }