mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 04:53:51 -05:00
11 lines
327 B
VimL
11 lines
327 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', 'none', 'vimHiGuiRgb,vimComment,vimLineComment')
|
|
|
|
endif
|