diff --git a/Installer/_vimrc b/Installer/_vimrc index 3937973..47144bd 100644 --- a/Installer/_vimrc +++ b/Installer/_vimrc @@ -15,12 +15,12 @@ endif " {on} Means to lazy-load when that command is invoked Plug 'https://github.com/ervandew/supertab' Plug 'https://github.com/scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } -Plug 'https://github.com/tpope/vim-dispatch' Plug 'https://github.com/tpope/vim-fugitive' Plug 'https://github.com/bfrg/vim-cpp-modern' -Plug 'https://github.com/junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } -Plug 'https://github.com/junegunn/fzf.vim' +Plug 'skywind3000/asyncrun' +Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } +Plug 'junegunn/fzf.vim' " Themes Plug 'https://github.com/tomasr/molokai' @@ -226,16 +226,16 @@ set errorformat+=%\\%%(CTIME%\\)%\\@=%m " ctime.exe -stat if s:running_windows set makeprg=build - nnoremap :!start cmd /c run + nnoremap :AsyncRun ./build.bat else " Set vim terminal to enter normal mode using escape like normal vim behaviour tnoremap + nnoremap :AsyncRun ./build.sh set makeprg=./build.sh endif "Go to next error "Go to previous error -nnoremap :Make nnoremap :cn nnoremap :cp