We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a5938 commit 2f7863bCopy full SHA for 2f7863b
1 file changed
lua/modules/plugins/tool.lua
@@ -1,4 +1,5 @@
1
local tool = {}
2
+local settings = require("core.settings")
3
4
tool["tpope/vim-fugitive"] = {
5
lazy = true,
@@ -71,12 +72,15 @@ tool["gelguy/wilder.nvim"] = {
71
72
config = require("tool.wilder"),
73
dependencies = { "romgrk/fzy-lua-native" },
74
}
75
+if settings.search_backend == "fzf" then
76
+ -- require fzf binary installed
77
+ tool["ibhagwan/fzf-lua"] = {
78
+ lazy = true,
79
+ event = "VeryLazy",
80
+ config = require("tool.fzf-lua"),
81
+ }
82
+end
83
-tool["ibhagwan/fzf-lua"] = {
- lazy = true,
- event = "VeryLazy",
- config = require("tool.fzf-lua"),
-}
84
----------------------------------------------------------------------
85
-- Telescope Plugins --
86
0 commit comments