From 3d4887349318f43dadf1de00ad15e35ba7812a84 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Sun, 19 Mar 2023 23:31:18 -0500 Subject: Smol formatting changes in vim/ --- vim/vimrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'vim/vimrc') diff --git a/vim/vimrc b/vim/vimrc index 2c59186..f97a654 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -19,7 +19,6 @@ " Get the first directory from the list in $VIMRUNTIMEPATH let $VIMFILES=split(&rtp,",")[0] set undodir=$VIMFILES/undo -set viminfofile=$VIMFILES/viminfo set viewdir=$VIMFILES/view set directory=$VIMFILES/swap set viminfofile=$VIMFILES/viminfo @@ -195,7 +194,7 @@ vmap gt :s/\<\(\w\)\(\w*\)\>/\u\1\L\2/g " Autoformat JSON jumbled data. (Selects the whole file as range to pass as " standard input to `jq .` which pretty prints JSON. Then replace range with " output.) -" Thankyou: https://stackoverflow.com/questions/26214156/how-to-auto-format-json-on-save-in-vim +" Ref.: https://stackoverflow.com/questions/26214156/how-to-auto-format-json-on-save-in-vim nnoremap gJ :%!python3 -m json.tool " :%!jq . -- cgit v1.2.3