1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:20:05 +08:00
SpaceVim/bundle/vim-asciidoc/ftdetect/asciidoc.vim
2020-09-06 21:56:12 +08:00

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