diff --git a/config/nvim/lua/user/plugins/neogit.lua b/config/nvim/lua/user/plugins/neogit.lua new file mode 100644 index 0000000..bbd2a6e --- /dev/null +++ b/config/nvim/lua/user/plugins/neogit.lua @@ -0,0 +1,22 @@ +return { + 'NeogitOrg/neogit', + + config = function() + require('neogit').setup { + disable_hint = true, + signs = { + section = { '', ''}, + item = { '', ''}, + hunk = { '', ''}, + }, + mappings = { + status = { + o = 'Toggle', + }, + }, + } + + vim.keymap.set('n', 'ng', 'Neogit') + end, +} +