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:
parent
78b781b1c8
commit
aba40d88df
1 changed files with 1 additions and 6 deletions
|
@ -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')"
|
||||
|
|
Loading…
Reference in a new issue