diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-05-17 11:18:30 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-05-17 11:18:30 +0200 |
commit | 9197c69900514524a0101d88e663b452de09a98d (patch) | |
tree | 24c4136b72add6155e984de843c2440d2e9f7405 /ftdetect | |
parent | c7dfe2f62654486e1f5f6a0ddd26ab558bd0ea2a (diff) | |
download | vim-polyglot-9197c69900514524a0101d88e663b452de09a98d.tar.gz vim-polyglot-9197c69900514524a0101d88e663b452de09a98d.zip |
Add asciidoc, closes #207
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index d8be2683..b00f0f8b 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -21,6 +21,12 @@ augroup filetypedetect augroup END augroup filetypedetect +" asciidoc:asciidoc/vim-asciidoc +autocmd BufNewFile,BufRead *.asciidoc,*.adoc + \ set ft=asciidoc +augroup END + +augroup filetypedetect " yaml:stephpy/vim-yaml augroup END |