nvim/lua/plugins/neogit.lua
Szwendacz 90dd454704
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 16m30s
Build neovim image / build-neovim-arm64 (push) Successful in 19m9s
Build neovim image / update-images-manifest (push) Successful in 14s
neogit config
2024-04-11 13:29:27 +02:00

15 lines
727 B
Lua

return {
config = {
graph_style = "unicode",
-- Used to generate URL's for branch popup action "pull request".
git_services = {
["github.com"] = "https://github.com/${owner}/${repository}/compare/${branch_name}?expand=1",
["bitbucket.org"] =
"https://bitbucket.org/${owner}/${repository}/pull-requests/new?source=${branch_name}&t=1",
["gitlab.com"] =
"https://gitlab.com/${owner}/${repository}/merge_requests/new?merge_request[source_branch]=${branch_name}",
["gitlab.inpl.work"] =
"https://gitlab.inpl.work/${owner}/${repository}/merge_requests/new?merge_request[source_branch]=${branch_name}",
},
}
}