64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
13 lines
247 B
VimL
13 lines
247 B
VimL
" 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
|