mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
110 lines
3.3 KiB
Lua
110 lines
3.3 KiB
Lua
return {
|
|
"petertriho/cmp-git",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
config = function()
|
|
local format = require("cmp_git.format")
|
|
local sort = require("cmp_git.sort")
|
|
|
|
require("cmp_git").setup({
|
|
-- defaults
|
|
filetypes = { "gitcommit", "octo" },
|
|
remotes = { "upstream", "origin" }, -- in order of most to least prioritized
|
|
enableRemoteUrlRewrites = false, -- enable git url rewrites, see https://git-scm.com/docs/git-config#Documentation/git-config.txt-urlltbasegtinsteadOf
|
|
git = {
|
|
commits = {
|
|
limit = 100,
|
|
sort_by = sort.git.commits,
|
|
format = format.git.commits,
|
|
},
|
|
},
|
|
github = {
|
|
hosts = {}, -- list of private instances of github
|
|
issues = {
|
|
fields = { "title", "number", "body", "updatedAt", "state" },
|
|
filter = "all", -- assigned, created, mentioned, subscribed, all, repos
|
|
limit = 100,
|
|
state = "open", -- open, closed, all
|
|
sort_by = sort.github.issues,
|
|
format = format.github.issues,
|
|
},
|
|
mentions = {
|
|
limit = 100,
|
|
sort_by = sort.github.mentions,
|
|
format = format.github.mentions,
|
|
},
|
|
pull_requests = {
|
|
fields = { "title", "number", "body", "updatedAt", "state" },
|
|
limit = 100,
|
|
state = "open", -- open, closed, merged, all
|
|
sort_by = sort.github.pull_requests,
|
|
format = format.github.pull_requests,
|
|
},
|
|
},
|
|
gitlab = {
|
|
hosts = {}, -- list of private instances of gitlab
|
|
issues = {
|
|
limit = 100,
|
|
state = "opened", -- opened, closed, all
|
|
sort_by = sort.gitlab.issues,
|
|
format = format.gitlab.issues,
|
|
},
|
|
mentions = {
|
|
limit = 100,
|
|
sort_by = sort.gitlab.mentions,
|
|
format = format.gitlab.mentions,
|
|
},
|
|
merge_requests = {
|
|
limit = 100,
|
|
state = "opened", -- opened, closed, locked, merged
|
|
sort_by = sort.gitlab.merge_requests,
|
|
format = format.gitlab.merge_requests,
|
|
},
|
|
},
|
|
trigger_actions = {
|
|
{
|
|
debug_name = "git_commits",
|
|
trigger_character = ":",
|
|
action = function(sources, trigger_char, callback, params, git_info)
|
|
return sources.git:get_commits(callback, params, trigger_char)
|
|
end,
|
|
},
|
|
{
|
|
debug_name = "gitlab_issues",
|
|
trigger_character = "#",
|
|
action = function(sources, trigger_char, callback, params, git_info)
|
|
return sources.gitlab:get_issues(callback, git_info, trigger_char)
|
|
end,
|
|
},
|
|
{
|
|
debug_name = "gitlab_mentions",
|
|
trigger_character = "@",
|
|
action = function(sources, trigger_char, callback, params, git_info)
|
|
return sources.gitlab:get_mentions(callback, git_info, trigger_char)
|
|
end,
|
|
},
|
|
{
|
|
debug_name = "gitlab_mrs",
|
|
trigger_character = "!",
|
|
action = function(sources, trigger_char, callback, params, git_info)
|
|
return sources.gitlab:get_merge_requests(callback, git_info, trigger_char)
|
|
end,
|
|
},
|
|
{
|
|
debug_name = "github_issues_and_pr",
|
|
trigger_character = "#",
|
|
action = function(sources, trigger_char, callback, params, git_info)
|
|
return sources.github:get_issues_and_prs(callback, git_info, trigger_char)
|
|
end,
|
|
},
|
|
{
|
|
debug_name = "github_mentions",
|
|
trigger_character = "@",
|
|
action = function(sources, trigger_char, callback, params, git_info)
|
|
return sources.github:get_mentions(callback, git_info, trigger_char)
|
|
end,
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|