From 573c9e147086c74004c03e42de1a421c8e87583a Mon Sep 17 00:00:00 2001 From: Adam Cooper Date: Fri, 14 Feb 2025 07:45:24 -0500 Subject: [PATCH] [lazyvim] Add: fzf-lua --- nvim/lazyvim.json | 1 + nvim/lua/plugins/custom.lua | 11 +++++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nvim/lazyvim.json b/nvim/lazyvim.json index db1c294..44b51fd 100644 --- a/nvim/lazyvim.json +++ b/nvim/lazyvim.json @@ -1,6 +1,7 @@ { "extras": [ "lazyvim.plugins.extras.coding.mini-surround", + "lazyvim.plugins.extras.editor.fzf", "lazyvim.plugins.extras.lang.go", "lazyvim.plugins.extras.lang.json", "lazyvim.plugins.extras.lang.markdown", diff --git a/nvim/lua/plugins/custom.lua b/nvim/lua/plugins/custom.lua index 5371f28..b10a14c 100644 --- a/nvim/lua/plugins/custom.lua +++ b/nvim/lua/plugins/custom.lua @@ -1,21 +1,20 @@ --- since this is just an example spec, don't actually load anything here and return an empty spec --- stylua: ignore --- if true then return {} end - -- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim -- -- In your plugin files, you can: -- * add extra plugins -- * disable/enabled LazyVim plugins -- * override the configuration of LazyVim plugins + +-- N.B. I could restore neo-tree and/or mini-starter + return { "kovisoft/paredit", { "monkoose/nvlime", event = "VeryLazy", dependencies = { - "monkoose/parsley" - } + "monkoose/parsley", + }, }, { "williamboman/mason.nvim",