💄 style(nvim): unnecesary brackets

This commit is contained in:
Sergio Laín 2023-12-01 14:10:47 +01:00
parent 4740d6f424
commit c28ca41b56
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
3 changed files with 3 additions and 9 deletions

View file

@ -1,10 +1,8 @@
return {
"hrsh7th/nvim-cmp",
dependencies = {
{
"amarakon/nvim-cmp-fonts",
},
},
opts = function(_, opts)
table.insert(opts.sources, { name = "fonts", option = { space_filter = "-" } })
end,

View file

@ -1,10 +1,8 @@
return {
"hrsh7th/nvim-cmp",
dependencies = {
{
"lukas-reineke/cmp-rg",
},
},
opts = function(_, opts)
table.insert(opts.sources, { name = "rg" })
end,

View file

@ -1,10 +1,8 @@
return {
"hrsh7th/nvim-cmp",
dependencies = {
{
"lukas-reineke/cmp-under-comparator",
},
},
opts = function(_, opts)
table.insert(opts.sorting.comparators, 4, require("cmp-under-comparator").under)
end,