vim/filetype.vim
Julien Le Page de43f2bcd8 Dropped ctags entirely
+ installed cpp-modern or regex highlighting
* updated ftplugin files
* updated vimrc
2021-08-16 10:04:29 +02:00

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