From aba40d88dfc5c828604ce4eed9a923df8acc7d1b Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 3 Nov 2020 12:24:17 +0530 Subject: [PATCH] nvim: lua: plugins: Remove post install hook for fzf The post install hook does not work in packer currently and has no effect. Remove it. --- nvim/.config/nvim/lua/plugins.lua | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 357c0d3..0a08bda 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -10,12 +10,7 @@ local init = function () config = "require('modules.sneak')" } -- Search - use { - 'junegunn/fzf', - run = function() - vim.fn['fzf#install'](0) - end - } + use 'junegunn/fzf' use { 'junegunn/fzf.vim', config = "require('modules.fzf')"