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