A color scheme based on Google's Material Design palette.
NOTE: Quantum requires a terminal or GUI that supports true-colors!
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 quantumNOTE: Configure all options before setting
colorscheme!
To swap the default background colors with blacker ones:
let g:quantum_black=1
colorscheme quantumTo italicize the comments:
let g:quantum_italics=1Quantum 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',
\ }