19 lines
417 B
VimL
19 lines
417 B
VimL
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'blade') == -1
|
|
|
|
" Vim filetype plugin
|
|
" Language: Blade (Laravel)
|
|
" Maintainer: Jason Walton <jwalton512@gmail.com>
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
|
|
runtime! ftplugin/html.vim
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal suffixesadd=.blade.php,.php
|
|
setlocal includeexpr=substitute(v:fname,'\\.','/','g')
|
|
setlocal path+=resources/views;
|
|
|
|
endif
|