feat: update cmp and lualine spec to match codeium style

This commit is contained in:
Nybkox 2024-06-29 15:54:29 +02:00 committed by Folke Lemaitre
parent 784a514c21
commit 35f9343af5

View file

@ -13,7 +13,19 @@ return {
"hrsh7th/nvim-cmp",
optional = true,
opts = function(_, opts)
table.insert(opts.sources, { name = "supermaven", priority = 100 })
table.insert(opts.sources, 1, {
name = "supermaven",
group_index = 1,
priority = 100,
})
end,
},
{
"nvim-lualine/lualine.nvim",
optional = true,
event = "VeryLazy",
opts = function(_, opts)
table.insert(opts.sections.lualine_x, 2, LazyVim.lualine.cmp_source("supermaven"))
end,
},
{