mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
16 lines
276 B
Lua
16 lines
276 B
Lua
return {
|
|
"petertriho/cmp-git",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
ft = { "gitcommit", "octo", "NeogitCommitMessage" },
|
|
opts = {
|
|
gitlab = {
|
|
hosts = {
|
|
"git.modulation.lv",
|
|
},
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
require("cmp_git").setup(opts)
|
|
end,
|
|
}
|