1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:10:05 +08:00
SpaceVim/filetype.vim
2019-06-09 14:11:17 +08:00

16 lines
517 B
VimL

"=============================================================================
" filetype.vim --- filetype detect for SpaceVim
" Copyright (c) 2016-2019 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
augroup spacevim_filetype_script
autocmd!
au BufRead,BufNewFile *.rs set filetype=rust
au BufNewFile,BufRead *.sol setf solidity
augroup END
" vim:set et sw=2