Added quite a few additional configs

This commit is contained in:
Rakshit Sinha 2024-11-22 20:20:06 -08:00
parent a4b3cfb24c
commit 13f1959014
12 changed files with 204 additions and 123 deletions

View file

@ -0,0 +1,19 @@
return {
"kdheepak/lazygit.nvim",
cmd = {
"LazyGit",
"LazyGitConfig",
"LazyGitCurrentFile",
"LazyGitFilter",
"LazyGitFilterCurrentFile",
},
-- optional for floating window border decoration
dependencies = {
"nvim-lua/plenary.nvim",
},
-- setting the keybinding for LazyGit with 'keys' is recommended in
-- order to load the plugin when the command is run for the first time
keys = {
{ "<leader>lg", "<cmd>LazyGit<cr>", desc = "Open Lazy Git" },
},
}