mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 19:16:28 +00:00
Lazy load everything!
This commit is contained in:
parent
1ab61dcbf7
commit
729a912244
@ -49,7 +49,7 @@ if (v:version > 703)
|
||||
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
|
||||
end
|
||||
if has('nvim')
|
||||
Plug 'kassio/neoterm'
|
||||
Plug 'kassio/neoterm', { 'on': ['TREPLSend', 'TREPLSendFile', 'T'] }
|
||||
command! Tig :T tig<CR>
|
||||
command! Tox :T tox<CR>
|
||||
endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
" Install plugin
|
||||
Plug 'rizzatti/dash.vim'
|
||||
Plug 'rizzatti/dash.vim', { 'on': 'DashSearch' }
|
||||
" Set config"
|
||||
nmap <silent> <leader>d <Plug>DashSearch
|
||||
let g:dash_map = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
Plug 'majutsushi/tagbar'
|
||||
Plug 'majutsushi/tagbar', { 'on': 'TagbarToggle' }
|
||||
nnoremap <silent> <F8> :TagbarToggle<CR>
|
||||
let g:tagbar_autofocus = 1 " Autofocus tagbar
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
Plug 'tomtom/tcomment_vim' " , { 'on': ['TComment', 'TCommentBlock'] }
|
||||
Plug 'tomtom/tcomment_vim', { 'on': ['TComment', 'TCommentBlock'] }
|
||||
nnoremap // :TComment<CR>
|
||||
vnoremap // :TCommentBlock<CR>
|
||||
|
@ -1,3 +1,3 @@
|
||||
Plug 'tpope/vim-dispatch'
|
||||
Plug 'tpope/vim-dispatch', { 'on': 'Dispatch' }
|
||||
nnoremap <F5> :Make<CR>
|
||||
command! TagsUpdate Dispatch ctags -R .
|
||||
|
Loading…
Reference in New Issue
Block a user