From 3c61df650cd375696eb87e7926f9a9cd76bf6f64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miros=C5=82aw=20Prag=C5=82owski?= Date: Tue, 29 Jul 2014 15:58:46 +0200 Subject: [PATCH] vim-json plugin & setup of JSON file type --- bundle/vim-json | 1 + vimrcs/filetypes.vim | 5 +++++ 2 files changed, 6 insertions(+) create mode 160000 bundle/vim-json diff --git a/bundle/vim-json b/bundle/vim-json new file mode 160000 index 00000000..239332a6 --- /dev/null +++ b/bundle/vim-json @@ -0,0 +1 @@ +Subproject commit 239332a65b24cea376ae68a8a3727d82e9f88b05 diff --git a/vimrcs/filetypes.vim b/vimrcs/filetypes.vim index 65fa0699..d713ab09 100644 --- a/vimrcs/filetypes.vim +++ b/vimrcs/filetypes.vim @@ -52,3 +52,8 @@ function! CoffeeScriptFold() setl foldlevelstart=1 endfunction au FileType coffee call CoffeeScriptFold() + +""""""""""""""""""""""""""""""" +" => JSON section +""""""""""""""""""""""""""""""" +au BufRead,BufNewFile *.json set filetype=json