mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 22:17:34 +00:00
Add bindings for fugitive
This commit is contained in:
parent
980dd9d1f5
commit
e43a43500e
@ -115,6 +115,14 @@ return require("packer").startup({
|
|||||||
-- Adds git operations to vim
|
-- Adds git operations to vim
|
||||||
use({
|
use({
|
||||||
"tpope/vim-fugitive",
|
"tpope/vim-fugitive",
|
||||||
|
config = function()
|
||||||
|
local opts = { silent = true, noremap = true }
|
||||||
|
vim.api.nvim_set_keymap("n", "gb", "<cmd>Gblame<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap("n", "gc", "<cmd>Gcommit<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap("n", "gd", "<cmd>Gdiff<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap("n", "gs", "<cmd>Git<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap("n", "gw", "<cmd>Gwrite<CR>", opts)
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Quick toggling of Location and Quickfix lists
|
-- Quick toggling of Location and Quickfix lists
|
||||||
|
Loading…
Reference in New Issue
Block a user