diff --git a/init.lua b/init.lua index ad43d596..4bbf26ae 100644 --- a/init.lua +++ b/init.lua @@ -886,7 +886,7 @@ require('lazy').setup({ -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins` - -- { import = 'custom.plugins' }, + { import = 'custom.plugins' }, }, { ui = { -- If you are using a Nerd Font: set icons to an empty table which will use the diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index abfaa91d..666a617e 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -2,4 +2,19 @@ -- I promise not to create any merge conflicts in this directory :) -- -- See the kickstart.nvim README for more information -return { 'tpope/vim-fugitive' } +return { + { + + 'NeogitOrg/neogit', + + dependencies = { + + 'nvim-lua/plenary.nvim', -- required + + 'sindrets/diffview.nvim', -- optional - Diff integration + + 'nvim-telescope/telescope.nvim', -- optional + }, + config = true, + }, +}