1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00
SpaceVim/filetype.vim

16 lines
517 B
VimL
Raw Normal View History

"=============================================================================
" filetype.vim --- filetype detect for SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
2019-01-28 22:12:37 +08:00
augroup spacevim_filetype_script
autocmd!
au BufRead,BufNewFile *.rs set filetype=rust
au BufNewFile,BufRead *.sol setf solidity
augroup END
2017-06-27 14:30:39 +08:00
2017-03-06 23:26:26 +08:00
" vim:set et sw=2