From bd409f4ac0d72b66daff25aa905d1d10950502d0 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 11 Oct 2018 15:42:35 +1100 Subject: [PATCH] Add a few more plugins from tpope's gallery vim-apathy automatically sets Vim's 'path' option for various file types, which helps a bunch of Vim commands usefully discover included files (gf, :find, [i, and more). vim-dadbod provides a :DB command, which can send queries through to a wide variety of database management systems. This includes Redis, which is awesome. vim-eunuch provides Vim commands wrapping various UNIX functionality. The most exciting are :SudoWrite and :SudoEdit, allowing a privileged file to be edited and saved without having to 'sudo vim' up front. --- config/vim/plugins.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/vim/plugins.vim b/config/vim/plugins.vim index f4cd532..afb16aa 100644 --- a/config/vim/plugins.vim +++ b/config/vim/plugins.vim @@ -53,8 +53,11 @@ call Plug('lifepillar/vim-mucomplete') call Plug('mhinz/vim-signify') call Plug('scrooloose/nerdtree') call Plug('sjl/vitality.vim') +call Plug('tpope/vim-apathy') call Plug('tpope/vim-commentary') +call Plug('tpope/vim-dadbod') call Plug('tpope/vim-endwise') +call Plug('tpope/vim-eunuch') call Plug('tpope/vim-fugitive') call Plug('tpope/vim-repeat') call Plug('tpope/vim-rhubarb')