plyglot has already mustach support

This commit is contained in:
Thomas Ruoff
2016-08-17 22:58:10 +02:00
parent 8e9807732d
commit 07dff40957

7
vimrc
View File

@@ -49,7 +49,6 @@ Plug 'Raimondi/delimitMate'
Plug 'pangloss/vim-javascript' Plug 'pangloss/vim-javascript'
Plug 'marijnh/tern_for_vim', { 'do': 'npm install', 'for': 'javascript'} Plug 'marijnh/tern_for_vim', { 'do': 'npm install', 'for': 'javascript'}
Plug 'mustache/vim-mustache-handlebars'
Plug 'mtscout6/syntastic-local-eslint.vim' Plug 'mtscout6/syntastic-local-eslint.vim'
"Plug 'mxw/vim-jsx' "Plug 'mxw/vim-jsx'
@@ -271,7 +270,7 @@ set undoreload=10000
let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_always_populate_loc_list = 1 let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 0 let g:syntastic_auto_loc_list = 0
let g:syntastic_check_on_open = 1 let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0 let g:syntastic_check_on_wq = 0
@@ -440,7 +439,7 @@ let g:UltiSnipsJumpForwardTrigger="<tab>"
let g:tex_flavor = "latex" let g:tex_flavor = "latex"
let g:livepreview_previewer = 'zathura' let g:livepreview_previewer = 'zathura'
" JSX " JSX
" let g:jsx_ext_required = 0 " Allow JSX in normal JS files " let g:jsx_ext_required = 0 " Allow JSX in normal JS files
" "
@@ -470,4 +469,4 @@ au FileType javascript map <leader>r <esc>:TernRename<CR>
au BufRead,BufNewFile *.json set ft=json au BufRead,BufNewFile *.json set ft=json
"" Mustache "" Mustache
au BufRead,BufNewFile *.template set filetype=html syntax=mustache au BufRead,BufNewFile *.template set filetype=html.mustache syntax=mustache