update README and swap insert/command

This commit is contained in:
Patrick Stockwell
2018-12-16 11:14:31 +11:00
parent 3c0e0f154c
commit 05cd9f51a0
2 changed files with 15 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
# vim-monokai-tasty
Monokai forever! :tada: Inspired by Sublime Text's interpretation of monokai, this colour scheme makes use of cterm color numbers to support VIM running on a wide range of systems.
It has been customised for Javascript highlighting, but works for all languages :heart:
Monokai forever! :tada: Inspired by Sublime Text's interpretation of monokai, this colour is both gui- and cterm-supported.
It works for all languages, and is particularly good for Javascript development :heart:
## :electric_plug: Installation
@@ -23,17 +23,23 @@ Plug 'elzr/vim-json'
## :wolf: Use
Add to your `.vimrc`:
Add the following to your `.vimrc`:
```vim
colorscheme vim-monokai-tasty
```
If you use a terminal that supports italic text, add
If you use a terminal that supports italic text, add:
```vim
let g:vim_monokai_tasty_italic = 1
```
To use the included [lightline.vim](https://github.com/itchyny/lightline.vim) theme:
```vim
let g:lightline = {
\ 'colorscheme': 'monokai_tasty',
\ }
```
## :tv: Screen shots
![](./example1.png)

View File

@@ -33,11 +33,11 @@ let s:palette.inactive.right = [
\ s:add(s:charcoal, s:grey, 'none'),
\ s:add(s:charcoal, s:dark_grey, 'none'),
\ s:add(s:light_grey, s:dark_grey, 'none') ]
let s:palette.insert.right = [
let s:palette.command.right = [
\ s:add(s:charcoal, s:light_blue, 'none'),
\ s:add(s:charcoal, s:grey, 'none'),
\ s:add(s:light_grey, s:dark_grey, 'none') ]
let s:palette.command.right = [
let s:palette.insert.right = [
\ s:add(s:charcoal, s:light_green, 'none'),
\ s:add(s:charcoal, s:grey, 'none'),
\ s:add(s:light_grey, s:dark_grey, 'none') ]
@@ -54,13 +54,13 @@ let s:palette.replace.right = [
let s:palette.normal.left = [
\ s:add(s:yellow, s:darkest_grey, 'bold'),
\ s:add(s:charcoal, s:yellow, 'none') ]
let s:palette.insert.left = [
let s:palette.command.left = [
\ s:add(s:light_blue, s:darkest_grey, 'bold'),
\ s:add(s:charcoal, s:light_blue, 'none') ]
let s:palette.replace.left = [
\ s:add(s:magenta, s:darkest_grey, 'bold'),
\ s:add(s:charcoal, s:magenta, 'none') ]
let s:palette.command.left = [
let s:palette.insert.left = [
\ s:add(s:light_green, s:darkest_grey, 'bold'),
\ s:add(s:charcoal, s:light_green, 'none') ]
let s:palette.visual.left = [