dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit b0385e63add233a8a66da556039b4a77c03807ec
parent d7b85aad6df2529c5f12f9cf12b865fc231b4ed6
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sat,  5 Oct 2019 13:12:53 -0400

vim: plugins

Former-commit-id: c28fcf5f0d99942defe4db2c36e09dddc207e544
Diffstat:
Mvim/vimrc | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/vim/vimrc b/vim/vimrc @@ -28,9 +28,6 @@ Plug 'tpope/vim-surround' " Eunuch - shell commands but in vim Plug 'tpope/vim-eunuch' -" Aligning and filtering text -Plug 'godlygeek/tabular' - " A tag overview on the right side Plug 'majutsushi/tagbar' @@ -109,6 +106,9 @@ Plug 'vim-scripts/pythoncomplete' " Alignment Plug 'junegunn/vim-easy-align' +" +" Peek contents of registers +Plug 'junegunn/vim-peekaboo' call plug#end() " }}} " Config {{{ @@ -274,6 +274,9 @@ xmap ga <Plug>(EasyAlign) " Start interactive EasyAlign for a motion/text object (e.g. gaip) nmap ga <Plug>(EasyAlign) " }}} +" Peekaboo {{{ +let g:peekaboo_compact=1 +" }}} " }}} " }}} " General {{{