mirror of
https://github.com/patstockwell/vim-monokai-tasty.git
synced 2025-11-08 09:53:52 -05:00
update README and swap insert/command
This commit is contained in:
16
README.md
16
README.md
@@ -1,7 +1,7 @@
|
|||||||
# vim-monokai-tasty
|
# 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.
|
Monokai forever! :tada: Inspired by Sublime Text's interpretation of monokai, this colour is both gui- and cterm-supported.
|
||||||
It has been customised for Javascript highlighting, but works for all languages :heart:
|
It works for all languages, and is particularly good for Javascript development :heart:
|
||||||
|
|
||||||
## :electric_plug: Installation
|
## :electric_plug: Installation
|
||||||
|
|
||||||
@@ -23,17 +23,23 @@ Plug 'elzr/vim-json'
|
|||||||
|
|
||||||
## :wolf: Use
|
## :wolf: Use
|
||||||
|
|
||||||
Add to your `.vimrc`:
|
Add the following to your `.vimrc`:
|
||||||
|
|
||||||
```vim
|
```vim
|
||||||
colorscheme vim-monokai-tasty
|
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
|
```vim
|
||||||
let g:vim_monokai_tasty_italic = 1
|
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
|
## :tv: Screen shots
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -33,11 +33,11 @@ let s:palette.inactive.right = [
|
|||||||
\ s:add(s:charcoal, s:grey, 'none'),
|
\ s:add(s:charcoal, s:grey, 'none'),
|
||||||
\ s:add(s:charcoal, s:dark_grey, 'none'),
|
\ s:add(s:charcoal, s:dark_grey, 'none'),
|
||||||
\ s:add(s:light_grey, 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:light_blue, 'none'),
|
||||||
\ s:add(s:charcoal, s:grey, 'none'),
|
\ s:add(s:charcoal, s:grey, 'none'),
|
||||||
\ s:add(s:light_grey, s:dark_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:light_green, 'none'),
|
||||||
\ s:add(s:charcoal, s:grey, 'none'),
|
\ s:add(s:charcoal, s:grey, 'none'),
|
||||||
\ s:add(s:light_grey, s:dark_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 = [
|
let s:palette.normal.left = [
|
||||||
\ s:add(s:yellow, s:darkest_grey, 'bold'),
|
\ s:add(s:yellow, s:darkest_grey, 'bold'),
|
||||||
\ s:add(s:charcoal, s:yellow, 'none') ]
|
\ 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:light_blue, s:darkest_grey, 'bold'),
|
||||||
\ s:add(s:charcoal, s:light_blue, 'none') ]
|
\ s:add(s:charcoal, s:light_blue, 'none') ]
|
||||||
let s:palette.replace.left = [
|
let s:palette.replace.left = [
|
||||||
\ s:add(s:magenta, s:darkest_grey, 'bold'),
|
\ s:add(s:magenta, s:darkest_grey, 'bold'),
|
||||||
\ s:add(s:charcoal, s:magenta, 'none') ]
|
\ 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:light_green, s:darkest_grey, 'bold'),
|
||||||
\ s:add(s:charcoal, s:light_green, 'none') ]
|
\ s:add(s:charcoal, s:light_green, 'none') ]
|
||||||
let s:palette.visual.left = [
|
let s:palette.visual.left = [
|
||||||
|
|||||||
Reference in New Issue
Block a user