mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-21 11:22:34 -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({
|
||||
{
|
||||
name = "snippy",
|
||||
priority = 4
|
||||
priority = 4,
|
||||
},
|
||||
|
||||
{
|
||||
name = "async_path",
|
||||
priority = 3
|
||||
priority = 3,
|
||||
},
|
||||
|
||||
{
|
||||
name = "buffer",
|
||||
priority = 3,
|
||||
max_item_count = 5
|
||||
max_item_count = 5,
|
||||
},
|
||||
|
||||
{
|
||||
name = "treesitter",
|
||||
priority = 2,
|
||||
max_item_count = 5
|
||||
max_item_count = 5,
|
||||
},
|
||||
|
||||
{
|
||||
name = "omni",
|
||||
priority = 2,
|
||||
max_item_count = 5
|
||||
max_item_count = 5,
|
||||
},
|
||||
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue