backup neovim
This commit is contained in:
15
neovim/lua/plugins/lazy-git.lua
Normal file
15
neovim/lua/plugins/lazy-git.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user