Add LLVM support (#376)

This commit is contained in:
dv
2019-03-04 18:05:07 +08:00
committed by Adam Stankiewicz
parent 58f9b8cd02
commit 65f090faef
8 changed files with 427 additions and 0 deletions

16
ftplugin/tablegen.vim Normal file
View File

@@ -0,0 +1,16 @@
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'llvm') != -1
finish
endif
" Vim filetype plugin file
" Language: LLVM TableGen
" Maintainer: The LLVM team, http://llvm.org/
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
setlocal matchpairs+=<:>
setlocal softtabstop=2 shiftwidth=2
setlocal expandtab