mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 12:33:51 -05:00
11 lines
300 B
VimL
11 lines
300 B
VimL
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
|