From 55abb84de7ed2068b0087dfee73f91dc09cb4940 Mon Sep 17 00:00:00 2001 From: bretello Date: Mon, 15 Mar 2021 10:29:08 +0100 Subject: [PATCH] vim: add Quickpeek --- vim/plugins_config.vim | 4 ++++ vim/plugs.vim | 3 +++ 2 files changed, 7 insertions(+) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index ee71e0b..74508fa 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -182,3 +182,7 @@ let g:snipMate = { 'snippet_version' : 1 } let g:snipMate.description_in_completion = 1 let g:ackprg = 'rg --vimgrep --no-heading' + +"" Quickpeek +" Automatically open the quickpeek window +let g:quickpeek_auto = v:true diff --git a/vim/plugs.vim b/vim/plugs.vim index 9881184..e7fe697 100644 --- a/vim/plugs.vim +++ b/vim/plugs.vim @@ -38,6 +38,9 @@ Plug 'https://github.com/maxbrunsfeld/vim-yankstack' " Mark indentation level Plug 'https://github.com/nathanaelkane/vim-indent-guides' +" Quickpeek +Plug 'https://github.com/AndrewRadev/quickpeek.vim' + " snipmate Plug 'https://github.com/MarcWeber/vim-addon-mw-utils' Plug 'https://github.com/tomtom/tlib_vim'