From fdf1ffb04ef0878a51f2476ae68fe530c3d7959b Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Tue, 8 Jun 2021 14:47:44 -0400 Subject: [PATCH] Attempt to add fzf to vim --- dot_config/nvim/init.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dot_config/nvim/init.vim b/dot_config/nvim/init.vim index aded5ae..6251e41 100644 --- a/dot_config/nvim/init.vim +++ b/dot_config/nvim/init.vim @@ -36,6 +36,7 @@ call plug#begin(g:plugged_home) Plug 'sheerun/vim-polyglot' Plug 'tpope/vim-fugitive' Plug 'psf/black', { 'branch': 'main' } + Plug 'junegunn/fzf.vim' " This was fun and all, but getting data out sucked, so if they ever get an " update, maybe try again "Plugin 'ActivityWatch/aw-watcher-vim' @@ -210,3 +211,4 @@ let g:webdevicons_enable = 1 let g:webdevicons_enable_nerdtree = 1 autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab autocmd BufWritePre *.py execute ':Black' +let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.5, 'highlight': 'Comment' } }