mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-12 20:23:50 +00:00
11 lines
264 B
Lua
11 lines
264 B
Lua
-- Switch in fugitive.vim status window with the current one
|
|
vim.keymap.set('n', '<leader>gs', '<cmd>Gedit :<cr>', { desc = '[G]it [S]tatus' })
|
|
|
|
return {
|
|
-- Git related plugins
|
|
'tpope/vim-fugitive',
|
|
dependencies = {
|
|
'tpope/vim-rhubarb',
|
|
},
|
|
}
|