diff --git a/vim/autocommands.vim b/vim/autocommands.vim index fdc1957e..8995e2bc 100644 --- a/vim/autocommands.vim +++ b/vim/autocommands.vim @@ -56,6 +56,3 @@ function! AdjustWindowHeight(minheight, maxheight) endw exe max([min([n_lines, a:maxheight]), a:minheight]) . "wincmd _" endfunction - -" Automatically format json files using jq on save -autocmd FileType json autocmd BufWritePre call JQ()