/vim-quantum

A Material color scheme for Vim.

Primary LanguageVim script

Quantum

A Vim color scheme based on the Material Design palette.

Quantum

quantum

Quantum Black

quantum-black

Installation

Use a plugin manager, or download this repo to ~/.vim/colors.

Then add the following to your .vimrc or init.vim:

set background=dark
colorscheme quantum

If your terminal supports true colors, add:

For Vim 8.0+ and Neovim 0.1.5+
if has("termguicolors")
    set termguicolors
endif
For Neovim 0.1.3 and 0.1.4
let $NVIM_TUI_ENABLE_TRUE_COLOR=1

Options

To use the included Airline theme:

let g:airline_theme='quantum'

For more contrast, enable Quantum Black:

let g:quantum_black = 1

If your terminal supports italics, add:

let g:quantum_italics = 1

Released under the MIT license.