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",