From c614d88b5258237b622c13a5a2629c40025e2b59 Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Wed, 5 Dec 2018 20:26:47 +1100 Subject: [PATCH] update README --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e50520f..9d0ee61 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,18 @@ 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 focuses mostly on Javascript highlighting, although there are bindings for the standard VIM highlights which will map for most languages. -This colour scheme makes use of and has a dependency on [`vim/pangloss`](https://github.com/pangloss/vim-javascript), a VIM syntax file for javascript. + +## Dependencies +This plugin works best with a terminal that can render italic text. It will work just fine on terminals that can't, the italic text will appear in inverted colours (black text on blue background for example). +This colour scheme also makes use of syntax definitions from [`vim/pangloss`](https://github.com/pangloss/vim-javascript). This VIM syntax file for javascript is a dependency for the _vim-monokai-tasty_ colour scheme. ## Installation -[Plug](https://github.com/junegunn/vim-plug) - `Plug 'patstockwell/vim-monokai-tasty'` +Use a plugin manager to install this colour scheme. I recommend [Plug](https://github.com/junegunn/vim-plug). + +Add the following to your `.vimrc` and run `PlugInstall` + +``` +Plug 'patstockwell/vim-monokai-tasty' +Plug 'pangloss/vim-javascript' +```