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
|
||||
|
||||
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
|
||||
|
||||

|
||||
|
||||
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user