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 { return {
-- Managing crates.io dependencies -- -- Managing crates.io dependencies --
'saecki/crates.nvim', 'saecki/crates.nvim',
tag = 'stable', tag = 'stable',
event = { "BufRead Cargo.toml" }, event = { 'BufRead Cargo.toml' },
config = function() config = function()
require('crates').setup() require('crates').setup()
end, end,
}, }