aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/csv.vim
blob: 4a2d082fa81d360e75ed419e19ebe718401ae370 (plain) (blame)
1
2
3
4
5
6
7
" Add automatic commands to detect CSV files
augroup dfcsv
  autocmd!
  autocmd BufNewFile,BufRead
      \ *.csv
      \ setfiletype csv
augroup END