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')"
|
config = "require('modules.sneak')"
|
||||||
}
|
}
|
||||||
-- Search
|
-- Search
|
||||||
use {
|
use 'junegunn/fzf'
|
||||||
'junegunn/fzf',
|
|
||||||
run = function()
|
|
||||||
vim.fn['fzf#install'](0)
|
|
||||||
end
|
|
||||||
}
|
|
||||||
use {
|
use {
|
||||||
'junegunn/fzf.vim',
|
'junegunn/fzf.vim',
|
||||||
config = "require('modules.fzf')"
|
config = "require('modules.fzf')"
|
||||||
|
|
Loading…
Reference in a new issue