mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
13 lines
400 B
VimL
Vendored
13 lines
400 B
VimL
Vendored
" Vim filetype detection file
|
|
" Language: AsciiDoc
|
|
" Maintainer: Barry Arthur <barry.arthur@gmail.com>
|
|
" URL: http://asciidoc.org/
|
|
" https://github.com/wsdjeg/vim-asciidoc
|
|
" Licence: Licensed under the same terms as Vim itself
|
|
" Remarks: Vim 6 or greater
|
|
|
|
augroup asciidoc
|
|
au!
|
|
au BufRead,BufNewFile *.asciidoc,*.adoc,*.asc set filetype=asciidoc
|
|
augroup END
|