diff --git a/.gitmodules b/.gitmodules index fbbeae7..1b1a07e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [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/vim-fugitive b/vim/.vim/plugged/vim-fugitive new file mode 160000 index 0000000..41a734e --- /dev/null +++ b/vim/.vim/plugged/vim-fugitive @@ -0,0 +1 @@ +Subproject commit 41a734ef49c78cfdb97426cda811ee99c39e011a diff --git a/vim/.vimrc b/vim/.vimrc index e9b9329..2505986 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -37,6 +37,7 @@ 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 'tpope/vim-surround' Plug 'Raimondi/delimitMate' call plug#end()