diff --git a/lua/custom/plugins/tools.lua b/lua/custom/plugins/tools.lua new file mode 100644 index 0000000..6428029 --- /dev/null +++ b/lua/custom/plugins/tools.lua @@ -0,0 +1,13 @@ +return { + { + 'kdheepak/lazygit.nvim', + keys = { + { 'gg', 'LazyGit', desc = 'Open LazyGit' }, + }, + cmd = 'LazyGit', + -- optional for floating window border decoration + dependencies = { + 'nvim-lua/plenary.nvim', + }, + }, +} diff --git a/lua/custom/plugins/ui.lua b/lua/custom/plugins/ui.lua index 089e1d4..3e47e38 100644 --- a/lua/custom/plugins/ui.lua +++ b/lua/custom/plugins/ui.lua @@ -127,17 +127,6 @@ return { } end, }, - { - 'kdheepak/lazygit.nvim', - keys = { - { 'gg', 'LazyGit', desc = 'Open LazyGit' }, - }, - cmd = 'LazyGit', - -- optional for floating window border decoration - dependencies = { - 'nvim-lua/plenary.nvim', - }, - }, { 'folke/which-key.nvim', event = 'VimEnter', -- Sets the loading event to 'VimEnter'