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.
This commit is contained in:
Sanchayan Maity 2020-11-03 12:24:17 +05:30
parent 78b781b1c8
commit aba40d88df

View file

@ -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')"