diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-11 09:20:12 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-11 09:20:36 +0100 |
commit | 420a65e9b0ab88095cd88c49167ab441a4dd1f3e (patch) | |
tree | e06444dd62853d76c3efdeb05b8a44e2bf98dc37 /ftplugin/llvm.vim | |
parent | 2254b83675e3356f42cc011133da67c26512022f (diff) | |
download | vim-polyglot-3.7.0.tar.gz vim-polyglot-3.7.0.zip |
Add llvm support, closes #376v3.7.0
Diffstat (limited to 'ftplugin/llvm.vim')
-rw-r--r-- | ftplugin/llvm.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ftplugin/llvm.vim b/ftplugin/llvm.vim new file mode 100644 index 00000000..0006c288 --- /dev/null +++ b/ftplugin/llvm.vim @@ -0,0 +1,16 @@ +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'llvm') != -1 + finish +endif + +" Vim filetype plugin file +" Language: LLVM Assembly +" Maintainer: The LLVM team, http://llvm.org/ + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal softtabstop=2 shiftwidth=2 +setlocal expandtab +setlocal comments+=:; |