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,15 @@
-- ~/.config/nvim/lua/config/lazygit.lua
return {
"kdheepak/lazygit.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
},
keys = {
{ "<leader>gg", "<cmd>LazyGit<CR>", desc = "LazyGit" },
},
config = function()
vim.g.lazygit_config = {
"--use-config-file=" .. os.getenv("HOME") .. "/.config/lazygit/config.yml",
}
end,
}