fix: ensure single quotes are used consistently across configuration files

This commit is contained in:
2024-11-12 14:19:44 -05:00
parent 0d6750bbcd
commit 3f096313fc
51 changed files with 3097 additions and 3057 deletions
+8 -8
View File
@@ -6,25 +6,25 @@
return {
{ -- DAP Core
import = "lazyvim.plugins.extras.dap.core",
import = 'lazyvim.plugins.extras.dap.core',
},
{ -- DAP Neovim Lua Adapter
import = "lazyvim.plugins.extras.dap.nlua",
import = 'lazyvim.plugins.extras.dap.nlua',
},
{ -- NeoTest
import = "lazyvim.plugins.extras.test.core",
import = 'lazyvim.plugins.extras.test.core',
},
{ -- Neotest Plenary
"nvim-neotest/neotest-plenary",
'nvim-neotest/neotest-plenary',
},
{ -- Neotest
"nvim-neotest/neotest",
'nvim-neotest/neotest',
opts = {
adapters = require("data.deps").neotest.adapters,
adapters = require('data.deps').neotest.adapters,
},
dependencies = require("data.deps").neotest.deps,
dependencies = require('data.deps').neotest.deps,
},
{ -- Profiling
"stevearc/profile.nvim",
'stevearc/profile.nvim',
},
}