2024-06-02 09:33:52 +02:00
|
|
|
-- Compatibility with Neovim 0.9
|
2024-06-01 20:46:56 +02:00
|
|
|
return {
|
2024-06-02 09:33:52 +02:00
|
|
|
-- Use LuaSnip instead of native snippets
|
2024-06-02 17:47:25 +02:00
|
|
|
{ "garymjr/nvim-snippets", enabled = false },
|
2024-06-01 20:46:56 +02:00
|
|
|
{ import = "lazyvim.plugins.extras.coding.luasnip" },
|
2024-06-02 09:33:52 +02:00
|
|
|
|
|
|
|
-- Use mini.comment instead of ts-comments
|
|
|
|
{ "folke/ts-comments.nvim", enabled = false },
|
|
|
|
{ import = "lazyvim.plugins.extras.coding.mini-comment" },
|
|
|
|
|
|
|
|
-- Use neodev instead of lazydev
|
|
|
|
{ "folke/lazydev.nvim", enabled = false },
|
2024-06-01 20:46:56 +02:00
|
|
|
{
|
2024-06-02 09:33:52 +02:00
|
|
|
"neovim/nvim-lspconfig",
|
|
|
|
dependencies = {
|
|
|
|
{ "folke/neodev.nvim", opts = {} },
|
|
|
|
},
|
2024-06-01 20:46:56 +02:00
|
|
|
},
|
|
|
|
}
|