return { { "lewis6991/gitsigns.nvim", config = function() require("gitsigns").setup({ current_line_blame = true, }) vim.keymap.set("n", "", {}) end, }, { "tpope/vim-fugitive", }, { "kdheepak/lazygit.nvim", cmd = { "LazyGit", "LazyGitConfig", "LazyGitCurrentFile", "LazyGitFilter", "LazyGitFilterCurrentFile", }, -- optional for floating window border decoration dependencies = { "nvim-lua/plenary.nvim", "nvim-telescope/telescope.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 = { { "lg", "LazyGit", desc = "LazyGit" }, }, config = function() require("telescope").load_extension("lazygit") end, }, }