From e2be791528a68f14a655db437ae2b4884f5cbe94 Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Thu, 28 Mar 2024 11:02:50 -0500 Subject: [PATCH] Added vimproc plugin Even though it's required when on older vim versions, and I'm on neovim, opening TypeScript files with FZF was borked. This fixes it. Productivity ensues. --- vim/.vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/.vimrc b/vim/.vimrc index 0c82d80..b8ef629 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -17,6 +17,7 @@ call plug#begin() " TypeScript Plug 'leafgarland/typescript-vim' Plug 'Quramy/tsuquyomi' + Plug 'Shougo/vimproc.vim', {'do' : 'make'} " GitHub Copilot Plug 'github/copilot.vim' call plug#end()