Files
LazyVim/lua/lazyvim/plugins/compat/nvim-0_9.lua
2024-06-02 17:47:27 +02:00

20 lines
537 B
Lua

-- Compatibility with Neovim 0.9
return {
-- Use LuaSnip instead of native snippets
{ "garymjr/nvim-snippets", enabled = false },
{ import = "lazyvim.plugins.extras.coding.luasnip" },
-- 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 = {} },
},
},
}