https://github.com/skielbasa/vim-material-monokai
A dark Material Design version of Monokai for Vim
https://github.com/skielbasa/vim-material-monokai
airline-themes color-scheme material-design vim vim-colorscheme
Last synced: 11 months ago
JSON representation
A dark Material Design version of Monokai for Vim
- Host: GitHub
- URL: https://github.com/skielbasa/vim-material-monokai
- Owner: skielbasa
- Created: 2017-11-29T01:32:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-09T12:36:12.000Z (almost 6 years ago)
- Last Synced: 2024-11-25T05:30:34.783Z (over 1 year ago)
- Topics: airline-themes, color-scheme, material-design, vim, vim-colorscheme
- Language: Vim script
- Homepage:
- Size: 13.7 KB
- Stars: 93
- Watchers: 3
- Forks: 28
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Material Monokai Color Scheme for Vim
Inspired by brendanblackwood's [material-monokai-syntax theme](https://github.com/brendanblackwood/material-monokai-syntax), my favorite Atom Syntax theme.
This theme uses sickill's [vim-monokai](https://github.com/sickill/vim-monokai) as a base with its colors shifted to the Material Design color palette. It is recommended that you use a [matching terminal theme](https://github.com/MartinSeeler/iterm2-material-design).
> **NOTE:** A terminal that supports true colors is strongly recommended. There is a 256 color fallback, but it doesn't look that great.
## Screenshots

## Installation
Install this color scheme using your preferred Vim plugin manager, then add the following to your .vimrc file:
```vim
set background=dark
set termguicolors
colorscheme material-monokai
```
### Options
Enable italic comments (terminal permitting) by adding the following to your .vimrc file:
```vim
let g:materialmonokai_italic=1
```
Enable subtle Spell highlighting:
```vim
let g:materialmonokai_subtle_spell=1
```
Disable the custom ALE indicators if you want to set your own or like the default ones:
```vim
let g:materialmonokai_custom_lint_indicators=0
```
### Vim Airline Support
Includes a matching [Airline](https://github.com/vim-airline/vim-airline) theme. To activate it, add the following to your .vimrc file:
```vim
let g:airline_theme='materialmonokai'
```
#### Vim Airline Options
Enable subtle mode indicator. By default both sides of the bar will change color based on the current mode. Turning this setting on will make only the mode label change color. To activate it, add the following to your .vimrc file:
```vim
let g:materialmonokai_subtle_airline=1
```