mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-12-15 18:48:34 +00:00
11 lines
218 B
Lua
11 lines
218 B
Lua
local neogit = require('neogit')
|
|
local nnoremap = require('halfdan.keymap').nnoremap
|
|
|
|
neogit.setup {}
|
|
|
|
nnoremap("<leader>gs", function()
|
|
neogit.open({ })
|
|
end);
|
|
|
|
nnoremap("<leader>ga", "<cmd>!git fetch --all<CR>");
|