refactor(nvim): set priority for some sources in cmp

This commit is contained in:
Price Hiller 2023-09-27 17:09:22 -05:00
parent 43fb2b2fe9
commit 362771dcd0
No known key found for this signature in database

View File

@ -325,14 +325,14 @@ return {
-- Git Commit Completions
cmp.setup.filetype("gitcommit", {
sources = standard_sources({
{ name = "conventionalcommits" },
{ name = "git" }
{ name = "conventionalcommits", priotity = 99 },
{ name = "git", priority = 98 }
}),
})
cmp.setup.filetype("octo", {
sources = standard_sources({
{ name = "git" }
{ name = "git", priority = 98 }
}),
})