10 lines
213 B
VimL
10 lines
213 B
VimL
" extra file types detection
|
|
if exists("did_load_filetypes")
|
|
finish
|
|
endif
|
|
augroup filetypedetect
|
|
au! BufRead,BufNewFile *.jl setfiletype julia
|
|
au! BufRead,BufNewFile *.tcc setfiletype cpp
|
|
augroup END
|
|
|