From cc1d4986f86ecc7a34556c638f045d9599dc7a42 Mon Sep 17 00:00:00 2001 From: coolneng Date: Tue, 16 Jul 2019 18:21:28 +0200 Subject: [PATCH] Replace vim-fugitive with gina and gitgutter --- .gitmodules | 3 --- vim/.vim/plugged/gina.vim | 1 + vim/.vim/plugged/vim-fugitive | 1 - vim/.vim/plugged/vim-gitgutter | 1 + vim/.vimrc | 3 ++- 5 files changed, 4 insertions(+), 5 deletions(-) create mode 160000 vim/.vim/plugged/gina.vim delete mode 160000 vim/.vim/plugged/vim-fugitive create mode 160000 vim/.vim/plugged/vim-gitgutter diff --git a/.gitmodules b/.gitmodules index 1b1a07e..fbbeae7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ [submodule "vim/.vim/bundle/delimitMate"] path = vim/.vim/bundle/delimitMate url = https://github.com/Raimondi/delimitMate -[submodule "vim/.vim/plugged/vim-fugitive"] - path = vim/.vim/plugged/vim-fugitive - url = https://github.com/tpope/vim-fugitive.git diff --git a/vim/.vim/plugged/gina.vim b/vim/.vim/plugged/gina.vim new file mode 160000 index 0000000..5c89623 --- /dev/null +++ b/vim/.vim/plugged/gina.vim @@ -0,0 +1 @@ +Subproject commit 5c89623051cfbb74d49f35f86c067c9b9bd57bee diff --git a/vim/.vim/plugged/vim-fugitive b/vim/.vim/plugged/vim-fugitive deleted file mode 160000 index 41a734e..0000000 --- a/vim/.vim/plugged/vim-fugitive +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 41a734ef49c78cfdb97426cda811ee99c39e011a diff --git a/vim/.vim/plugged/vim-gitgutter b/vim/.vim/plugged/vim-gitgutter new file mode 160000 index 0000000..9147174 --- /dev/null +++ b/vim/.vim/plugged/vim-gitgutter @@ -0,0 +1 @@ +Subproject commit 91471746fe687ee867877508dfd809460dab5698 diff --git a/vim/.vimrc b/vim/.vimrc index 6f1a351..47a2d8e 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -37,7 +37,8 @@ call plug#begin('~/.vim/plugged') Plug 'plasticboy/vim-markdown', { 'for': 'markdown' } Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } Plug 'SirVer/ultisnips', { 'for': 'markdown' } -Plug 'tpope/vim-fugitive', { 'on': 'Goyo' } +Plug 'lambdalisue/gina.vim' +Plug 'airblade/vim-gitgutter' Plug 'tpope/vim-surround' Plug 'Raimondi/delimitMate' call plug#end()