diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-02-23 14:47:06 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-02-23 14:47:06 -0500 |
| commit | 1082b5aa35f077da280333e68e733d55f4b1b13d (patch) | |
| tree | e5912bfc9650b921bbea93dea4f9ed885567aa6c | |
| parent | c34056b3a766e5f0c7a0664d3e1215e9e8024445 (diff) | |
| download | vim-cfg-1082b5aa35f077da280333e68e733d55f4b1b13d.tar.gz vim-cfg-1082b5aa35f077da280333e68e733d55f4b1b13d.tar.xz | |
Add support for gundo
| -rw-r--r-- | inc/gundo.vim | 1 | ||||
| -rw-r--r-- | inc/rebinds.vim | 1 | ||||
| -rw-r--r-- | init.vim | 1 | ||||
| -rwxr-xr-x | setup.sh | 3 |
4 files changed, 6 insertions, 0 deletions
diff --git a/inc/gundo.vim b/inc/gundo.vim new file mode 100644 index 0000000..bdcb82a --- /dev/null +++ b/inc/gundo.vim @@ -0,0 +1 @@ +let g:gundo_prefer_python3 = 1 diff --git a/inc/rebinds.vim b/inc/rebinds.vim index fb14324..cacef62 100644 --- a/inc/rebinds.vim +++ b/inc/rebinds.vim @@ -11,3 +11,4 @@ map <C-n> :NERDTreeToggle<CR> nmap <leader> [ :AcpDisable<CR> nmap <leader> ] :AcpEnable<CR> +nnoremap <F5> :GundoToggle<CR> @@ -6,6 +6,7 @@ source ~/.vim/inc/undo.vim source ~/.vim/inc/filetype-options.vim source ~/.vim/inc/airline.vim source ~/.vim/inc/ctrlp.vim +source ~/.vim/inc/gundo.vim " Omni completion filetype plugin on @@ -59,3 +59,6 @@ clone DIR="bundle/nerdtree" URL="https://github.com/scrooloose/nerdtree" clone +DIR="bundle/gundo" +URL="https://github.com/sjl/gundo.vim" +clone |
