aboutsummaryrefslogtreecommitdiff
path: root/.vim/plugins/misc.vim
diff options
context:
space:
mode:
authorgxlin <[email protected]>2021-03-16 10:42:48 +0800
committergxlin <[email protected]>2021-03-16 10:42:48 +0800
commit06929ba11c0ef83da2462f60ee8c6dc07a2aa9a4 (patch)
tree7eede7fef35e892ec41b0db529819ce33871b016 /.vim/plugins/misc.vim
parent4d3b20b9445c1bcdd015e2babc03da91651898ed (diff)
downloaddotfiles-06929ba11c0ef83da2462f60ee8c6dc07a2aa9a4.tar.gz
dotfiles-06929ba11c0ef83da2462f60ee8c6dc07a2aa9a4.tar.bz2
dotfiles-06929ba11c0ef83da2462f60ee8c6dc07a2aa9a4.zip
Split .vimrc to multiple vimscript files
Diffstat (limited to '.vim/plugins/misc.vim')
-rw-r--r--.vim/plugins/misc.vim19
1 files changed, 19 insertions, 0 deletions
diff --git a/.vim/plugins/misc.vim b/.vim/plugins/misc.vim
new file mode 100644
index 0000000..a07c23c
--- /dev/null
+++ b/.vim/plugins/misc.vim
@@ -0,0 +1,19 @@
+Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'}
+
+map <C-n> :NERDTreeToggle<CR>
+
+Plug 'skywind3000/asyncrun.vim'
+
+let g:asyncrun_open = 6 " the number of lines of quickfix window
+let g:asyncrun_bell = 1 " the bell rings when the task is done
+" use f10 to open/close asyncrun quickfix window
+nnoremap <F10> :call asyncrun#quickfix_toggle(6)<cr>
+
+Plug 'puremourning/vimspector'
+
+let g:vimspector_enable_mappings = 'HUMAN'
+
+Plug 'mhinz/vim-signify'
+Plug 'tpope/vim-unimpaired'
+Plug 'godlygeek/tabular'
+Plug 'ledger/vim-ledger', {'for': 'ledger'}