commit 56dd21e2f807c6c6b43cce317a7922d1bc010a4e
parent b21e285f0345586d8a55e22319d2c5334039d0c8
Author: finwo <finwo@pm.me>
Date: Wed, 10 Jul 2019 12:32:33 +0200
Added vim-easy-align
Diffstat:
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/neovim/home/.vimrc b/neovim/home/.vimrc
@@ -12,6 +12,7 @@ Plug 'editorconfig/editorconfig-vim'
Plug 'itchyny/calendar.vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
+Plug 'junegunn/vim-easy-align'
Plug 'morhetz/gruvbox'
Plug 'padawan-php/deoplete-padawan', { 'do': 'composer install' }
Plug 'qpkorr/vim-bufkill'
@@ -279,3 +280,12 @@ let g:deoplete#sources#ternjs#filetypes = [
let g:calendar_google_calendar = 1
let g:calendar_first_day = "Monday"
" }}}
+" EasyAlign {{{
+
+" Start interactive EasyAlign in visual mode (e.g. vipga)
+xmap ga <Plug>(EasyAlign)
+
+" Start interactive EasyAlgin for a motion/text object (e.g. gaip)
+nmap ga <Plug>(EasyAlign)
+
+" }}}