11 lines
336 B
VimL
11 lines
336 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('hex', 'extended', 'yamlComment,yamlFlowString,yamlPlainScalar')
|
|
|
|
endif
|