summaryrefslogblamecommitdiffstats
path: root/after/syntax/less.vim
blob: bb7bb56acd4bc0de63861d35bd56160f98ea71dd (plain) (tree)
1
2
3
4
5
6
7

                                                                                  




                                                         






                                                                                                                 
                                                                                                                                                                                    

     
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

" variable               | property       | multiline      | end-of-line | plugin
" -----------------------+----------------+----------------+-------------+---------
"                lessCssAttribute         | lessCssComment | lessComment | https://github.com/genoma/vim-less
"                 lessAttribute           | lessCssComment | lessComment | https://github.com/KohPoll/vim-less
" lessVariableValue      | lessDefinition | cssComment     | lessComment | https://github.com/groenewege/vim-less
" lessVariableDefinition | cssDefinition  | cssComment     | lessComment | https://github.com/lunaru/vim-less

call css_color#init('css', 'extended', 'lessVariableValue,lessVariableDefinition,lessDefinition,lessCssAttribute,lessAttribute,cssDefinition,cssComment,lessCssComment,lessComment')

endif