diff --git a/autoload/SpaceVim/layers/lang.vim b/autoload/SpaceVim/layers/lang.vim index 251b3b0f3..43064527b 100644 --- a/autoload/SpaceVim/layers/lang.vim +++ b/autoload/SpaceVim/layers/lang.vim @@ -1,11 +1,5 @@ function! SpaceVim#layers#lang#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']}], \ ['digitaltoad/vim-jade', { 'on_ft' : ['jade']}], \ ['juvenn/mustache.vim', { 'on_ft' : ['mustache']}], \ ['kchmck/vim-coffee-script', { 'on_ft' : ['coffee']}], diff --git a/autoload/SpaceVim/layers/lang/html.vim b/autoload/SpaceVim/layers/lang/html.vim new file mode 100644 index 000000000..1a7aee51e --- /dev/null +++ b/autoload/SpaceVim/layers/lang/html.vim @@ -0,0 +1,11 @@ +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