mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 17:11:32 +08:00
12 lines
683 B
VimL
12 lines
683 B
VimL
function! SpaceVim#layers#lang#html#plugins() abort
|
|
let plugins = [
|
|
\ ['groenewege/vim-less', { 'on_ft' : ['less']}],
|
|
\ ['cakebaker/scss-syntax.vim', { 'on_ft' : ['scss','sass']}],
|
|
\ ['hail2u/vim-css3-syntax', { 'on_ft' : ['css','scss','sass']}],
|
|
\ ['ap/vim-css-color', { 'on_ft' : ['css','scss','sass','less','styl']}],
|
|
\ ['othree/html5.vim', { 'on_ft' : ['html']}],
|
|
\ ['wavded/vim-stylus', { 'on_ft' : ['stylus']}],
|
|
\ ]
|
|
return plugins
|
|
endfunction
|