aboutsummaryrefslogtreecommitdiff
path: root/vim/filetype.vim
blob: 2abe78315b9f3b689928e5c4b98c7b35a54afcd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" Override filetypes.vim
if exists('g:did_load_filetypes')
  finish
endif
let g:did_load_filetypes = 1

" Use only the rules in ftdetect
augroup filetypedetect
  autocmd!
  runtime! ftdetect/*.vim
augroup END