Skip to content

Commit 841e8a4

Browse files
committedOct 14, 2018
Added vim rest client.
1 parent 24e56f3 commit 841e8a4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎.vimrc

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,22 @@ Plug 'ntpeters/vim-better-whitespace'
1616
Plug 'thinca/vim-quickrun'
1717
Plug 'vim-scripts/Conque-Shell'
1818
Plug 'jvirtanen/vim-octave.git'
19+
Plug 'diepm/vim-rest-console'
1920
call plug#end()
2021

2122
" Keymaps
2223
map <C-n> :NERDTreeToggle<CR>
2324
nnoremap <F9> :QuickRun<cr>
2425
25-
"Better window navigation
26+
" Better window navigation
2627
nnoremap <C-j> <C-w>j
2728
nnoremap <C-k> <C-w>k
2829
nnoremap <C-h> <C-w>h
2930
nnoremap <C-l> <C-w>l
3031
32+
" Alias for commands
33+
com! FormatJSON %!python -m json.tool
34+
3135
" Better Whitespace settings
3236
let g:better_whitespace_enabled=1
3337
let g:strip_whitespace_on_save=1

0 commit comments

Comments
 (0)
Please sign in to comment.