Remove unneded comma

This commit is contained in:
Vladislav 2024-03-04 03:06:44 +01:00
parent 6e53b7028d
commit 245105e8f3
No known key found for this signature in database
GPG Key ID: 07A1CCBD643CA257
1 changed files with 8 additions and 8 deletions

View File

@ -1,9 +1,9 @@
return {
-- Managing crates.io dependencies --
'saecki/crates.nvim',
tag = 'stable',
event = { "BufRead Cargo.toml" },
config = function()
require('crates').setup()
end,
},
-- Managing crates.io dependencies --
'saecki/crates.nvim',
tag = 'stable',
event = { 'BufRead Cargo.toml' },
config = function()
require('crates').setup()
end,
}