backup neovim

This commit is contained in:
Luis Freixial
2025-07-15 16:15:41 +01:00
parent 602a7eae8b
commit be6a2fab10
22 changed files with 718 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
return {
-- Fuzzy finder plugin
"ibhagwan/fzf-lua",
-- optional, since lazy.nvim loads dependencies automatically
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
-- The setup function is optional, and can be omitted to use the default settings
require("fzf-lua").setup({})
end,
}