vim-polyglot/ftplugin/blade.vim
Adam Stankiewicz 61390f5885 Update
2016-01-22 09:08:00 +01:00

17 lines
317 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 iskeyword+=@-@
endif