feat(coding): use lazydev.nvim instead of neodev.nvim

This commit is contained in:
Folke Lemaitre 2024-06-02 09:33:52 +02:00
parent 596c439db5
commit 5e76948d58
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
4 changed files with 42 additions and 5 deletions

View file

@ -1,8 +1,18 @@
-- Compatibility with Neovim 0.9
return {
-- Use LuaSnip instead of native snippets
{ import = "lazyvim.plugins.extras.coding.luasnip" },
{
"folke/ts-comments.nvim",
enabled = false,
},
-- 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 },
{
"neovim/nvim-lspconfig",
dependencies = {
{ "folke/neodev.nvim", opts = {} },
},
},
}