mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-21 19:32:31 -05:00
Add commas to the last item in each nvim-cmp object
This commit is contained in:
parent
722019a740
commit
a97440dadc
1 changed files with 5 additions and 5 deletions
|
@ -50,30 +50,30 @@ if (vim.g.enablecompletion == 1) then
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
{
|
{
|
||||||
name = "snippy",
|
name = "snippy",
|
||||||
priority = 4
|
priority = 4,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "async_path",
|
name = "async_path",
|
||||||
priority = 3
|
priority = 3,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "buffer",
|
name = "buffer",
|
||||||
priority = 3,
|
priority = 3,
|
||||||
max_item_count = 5
|
max_item_count = 5,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "treesitter",
|
name = "treesitter",
|
||||||
priority = 2,
|
priority = 2,
|
||||||
max_item_count = 5
|
max_item_count = 5,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "omni",
|
name = "omni",
|
||||||
priority = 2,
|
priority = 2,
|
||||||
max_item_count = 5
|
max_item_count = 5,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue