From 42730436669271328d7b8ec910c0940c014a7bb5 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 04:01:10 +0100 Subject: [PATCH] feat(fzf.lua): add fzf plugin configuration The fzf.lua file is added to the absolute/plugins directory. It contains the configuration for the fzf plugin. The configuration includes the plugin name "junegunn/fzf" and the build command "./install --all". This configuration enables the fzf plugin to be used in the project. --- lua/absolute/plugins/fzf.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lua/absolute/plugins/fzf.lua diff --git a/lua/absolute/plugins/fzf.lua b/lua/absolute/plugins/fzf.lua new file mode 100644 index 0000000..0cfb477 --- /dev/null +++ b/lua/absolute/plugins/fzf.lua @@ -0,0 +1,4 @@ +return { + "junegunn/fzf", + build = "./install --all", +}