mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-12-26 13:21:45 +00:00
17 lines
615 B
Lua
17 lines
615 B
Lua
return {
|
|
{
|
|
-- Git related plugins
|
|
'tpope/vim-fugitive',
|
|
config = function()
|
|
-- Switch in fugitive.vim status window with the current one
|
|
vim.keymap.set('n', '<leader>gs', '<cmd>Gedit :<cr>', { desc = '[G]it [S]tatus' })
|
|
-- Fetch all changes
|
|
vim.keymap.set('n', '<leader>gF', '<cmd>Git fetch<cr>', { desc = '[G]it [F]etch' })
|
|
-- Push changes
|
|
vim.keymap.set('n', '<leader>gP', '<cmd>Git push<cr>', { desc = '[G]it [P]ush' })
|
|
-- Pull changes
|
|
vim.keymap.set('n', '<leader>gp', '<cmd>Git pull<cr>', { desc = '[G]it [P]ull' })
|
|
end,
|
|
},
|
|
}
|