1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/neogit.lua
2022-10-13 01:05:38 +02:00

15 lines
258 B
Lua

local M = {}
function M.setup()
-- This is here because we do not want to use neogit inside firenvim or vscode!
vim.cmd [[packadd! neogit]]
local neogit = require("neogit")
neogit.setup()
vim.keymap.set("n", "<C-g>", neogit.open)
end
return M