aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/csv.vim
blob: 727077a076f151ccc0f62e839f8d69c1e9dbf5f1 (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