File tree Expand file tree Collapse file tree 3 files changed +23
-0
lines changed Expand file tree Collapse file tree 3 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 16
16
"inc-rename.nvim" : { "branch" : " main" , "commit" : " a3e31af13844534c66041ce92f29af7745883875" },
17
17
"indent-blankline.nvim" : { "branch" : " master" , "commit" : " 005b56001b2cb30bfa61b7986bc50657816ba4ba" },
18
18
"lazy.nvim" : { "branch" : " main" , "commit" : " 6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
19
+ "lazygit.nvim" : { "branch" : " main" , "commit" : " b9eae3badab982e71abab96d3ee1d258f0c07961" },
19
20
"lualine.nvim" : { "branch" : " master" , "commit" : " a94fc68960665e54408fe37dcf573193c4ce82c9" },
20
21
"mason-lspconfig.nvim" : { "branch" : " main" , "commit" : " bef29b653ba71d442816bf56286c2a686210be04" },
21
22
"mason-nvim-dap.nvim" : { "branch" : " main" , "commit" : " 4c2cdc69d69fe00c15ae8648f7e954d99e5de3ea" },
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ return {
37
37
require (' plugins.win-picker' ),
38
38
require (' plugins.clangd-extensions' ),
39
39
require (' plugins.terminal' ),
40
+ require (' plugins.lazygit' ),
40
41
-- require('plugins.rocks'),
41
42
require (' plugins.pio' )
42
43
-- require('plugins.image')
Original file line number Diff line number Diff line change
1
+ -- nvim v0.8.0
2
+ return {
3
+ " kdheepak/lazygit.nvim" ,
4
+ lazy = true ,
5
+ cmd = {
6
+ " LazyGit" ,
7
+ " LazyGitConfig" ,
8
+ " LazyGitCurrentFile" ,
9
+ " LazyGitFilter" ,
10
+ " LazyGitFilterCurrentFile" ,
11
+ },
12
+ -- optional for floating window border decoration
13
+ dependencies = {
14
+ " nvim-lua/plenary.nvim" ,
15
+ },
16
+ -- setting the keybinding for LazyGit with 'keys' is recommended in
17
+ -- order to load the plugin when the command is run for the first time
18
+ keys = {
19
+ { " <leader>lg" , " <cmd>LazyGit<cr>" , desc = " LazyGit" }
20
+ }
21
+ }
You can’t perform that action at this time.
0 commit comments