This repository has been archived on 2021-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.vim/ftdetect/filetypes.vim

39 lines
2 KiB
VimL
Raw Normal View History

2018-03-14 15:30:44 +01:00
" Set unknown filetypes
au BufRead,BufNewFile *.scad setfiletype openscad
" Set properties
autocmd Filetype arduino setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype c setlocal ts=4 sw=4 sts=4 expandtab
2019-06-09 00:23:36 +02:00
autocmd Filetype cpp setlocal ts=4 sw=4 sts=4 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype css setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype dart setlocal ts=2 sw=2 sts=2 expandtab
2018-04-09 16:38:38 +02:00
autocmd Filetype dockerfile setlocal ts=4 sw=4 sts=4 expandtab
autocmd Filetype dot setlocal ts=2 sw=2 sts=2 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype elm setlocal ts=2 sw=2 sts=2 expandtab
2019-07-31 06:41:39 +02:00
autocmd Filetype gitcommit setlocal colorcolumn=72
2018-03-14 15:30:44 +01:00
autocmd Filetype go setlocal ts=4 sw=4 sts=4
2018-08-23 13:19:50 +02:00
autocmd Filetype haskell setlocal ts=4 sw=4 sts=4 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype html setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype html.twig setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype javascript setlocal ts=2 sw=2 sts=2 expandtab
2018-03-19 14:49:05 +01:00
autocmd Filetype jinja setlocal ts=2 sw=2 sts=2 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype json setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype less setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype lua setlocal ts=4 sw=4 sts=4 expandtab
autocmd Filetype markdown setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype openscad setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype php setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype python setlocal ts=4 sw=4 sts=4 expandtab
2019-06-10 16:09:17 +02:00
autocmd Filetype sass setlocal ts=2 sw=2 sts=2 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype scss setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype sh setlocal ts=4 sw=4 sts=4 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype svg setlocal ts=2 sw=2 sts=2 expandtab
2018-06-22 17:15:47 +02:00
autocmd Filetype tex setlocal ts=1 sw=1 sts=1 expandtab
2018-08-21 15:24:07 +02:00
autocmd Filetype tf setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype toml setlocal ts=2 sw=2 sts=2 expandtab
2019-06-09 00:23:36 +02:00
autocmd Filetype vim setlocal ts=2 sw=2 sts=2 expandtab
2018-03-14 15:30:44 +01:00
autocmd Filetype vue setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype xml setlocal ts=2 sw=2 sts=2 expandtab
autocmd Filetype yaml setlocal ts=2 sw=2 sts=2 expandtab
2019-06-09 00:23:36 +02:00
autocmd Filetype zsh setlocal ts=4 sw=4 sts=4 expandtab