mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-09 03:53:52 -05:00
coffee, cucumbeer, eruby, haml, haskell, javascript, json, less, nginx, ocaml, ruby, sass, scss, slim, stylus, textile, tmux
9 lines
245 B
VimL
9 lines
245 B
VimL
autocmd BufNewFile,BufRead *.json set filetype=json
|
|
|
|
augroup json_autocmd
|
|
autocmd!
|
|
autocmd FileType json setlocal autoindent
|
|
autocmd FileType json setlocal formatoptions=tcq2l
|
|
autocmd FileType json setlocal foldmethod=syntax
|
|
augroup END
|