diff options
Diffstat (limited to 'after/syntax/json.vim')
-rw-r--r-- | after/syntax/json.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/after/syntax/json.vim b/after/syntax/json.vim index dfca138e..ef6f55e4 100644 --- a/after/syntax/json.vim +++ b/after/syntax/json.vim @@ -1,6 +1,10 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'css-color') == -1 + " Language: Colorful CSS Color Preview " Author: Aristotle Pagaltzis <pagaltzis@gmx.de> if !( has('gui_running') || &t_Co==256 ) | finish | endif call css_color#init('css', 'none', 'jsonString') + +endif |