summaryrefslogtreecommitdiffstats
path: root/ftdetect/polyglot.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2019-03-04 11:11:01 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2019-03-04 11:11:01 +0100
commitfc272a0aa272b0cd8f292baf64b9ee34a1f48b12 (patch)
treee11262ca524cac7eb27f3c22d21cdff833a696f3 /ftdetect/polyglot.vim
parent65f090faeff36d9b523196bd96ee7f149c441f63 (diff)
downloadvim-polyglot-fc272a0aa272b0cd8f292baf64b9ee34a1f48b12.tar.gz
vim-polyglot-fc272a0aa272b0cd8f292baf64b9ee34a1f48b12.zip
Revert llvm support (takes too long to download)
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r--ftdetect/polyglot.vim21
1 files changed, 0 insertions, 21 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim
index 1f8857b6..3316c3b7 100644
--- a/ftdetect/polyglot.vim
+++ b/ftdetect/polyglot.vim
@@ -677,27 +677,6 @@ autocmd BufNewFile,BufRead *Slakefile set filetype=ls
augroup end
endif
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1
- augroup filetypedetect
- " llvm, from llvm-lit.vim in llvm/llvm-project:_ALL:/llvm/utils/vim/
-au BufRead,BufNewFile lit.*cfg set filetype=python
- augroup end
-endif
-
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1
- augroup filetypedetect
- " llvm, from llvm.vim in llvm/llvm-project:_ALL:/llvm/utils/vim/
-au BufRead,BufNewFile *.ll set filetype=llvm
- augroup end
-endif
-
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1
- augroup filetypedetect
- " llvm, from tablegen.vim in llvm/llvm-project:_ALL:/llvm/utils/vim/
-au BufRead,BufNewFile *.td set filetype=tablegen
- augroup end
-endif
-
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'mako') == -1
augroup filetypedetect
" mako, from mako.vim in sophacles/vim-bundle-mako