01fe1500df
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
|