From 1d9eabc0fb942fb33daf87d0e7ec4fac919bcca1 Mon Sep 17 00:00:00 2001 From: Robin Ting Date: Tue, 2 Jul 2024 10:53:03 -0400 Subject: [PATCH] docs: add comments on why neodev is disabled --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 468dfa86..ce338398 100644 --- a/init.lua +++ b/init.lua @@ -423,6 +423,8 @@ require('lazy').setup({ -- `neodev` configures Lua LSP for your Neovim config, runtime and plugins -- used for completion, annotations and signatures of Neovim apis -- { 'folke/neodev.nvim', opts = {} }, + -- NEODEV IS NOW EOL + { "folke/neodev.nvim", enabled = false }, -- disable neodev as it is EOL { "folke/lazydev.nvim", ft = "lua", -- only load on lua files @@ -445,7 +447,6 @@ require('lazy').setup({ }) end, }, - { "folke/neodev.nvim", enabled = false }, }, config = function() -- Brief aside: **What is LSP?**