From 92ab75408df8bff49bb29e113b3cc159d1ac3105 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Sat, 18 Jul 2015 23:05:45 +0200 Subject: Allow for disabling individual languages, closes #66 --- after/syntax/json.vim | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'after/syntax/json.vim') 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 if !( has('gui_running') || &t_Co==256 ) | finish | endif call css_color#init('css', 'none', 'jsonString') + +endif -- cgit v1.2.3