docs: add comments on why neodev is disabled
This commit is contained in:
parent
367121d45a
commit
1d9eabc0fb
3
init.lua
3
init.lua
|
@ -423,6 +423,8 @@ require('lazy').setup({
|
||||||
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
|
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
|
||||||
-- used for completion, annotations and signatures of Neovim apis
|
-- used for completion, annotations and signatures of Neovim apis
|
||||||
-- { 'folke/neodev.nvim', opts = {} },
|
-- { 'folke/neodev.nvim', opts = {} },
|
||||||
|
-- NEODEV IS NOW EOL
|
||||||
|
{ "folke/neodev.nvim", enabled = false }, -- disable neodev as it is EOL
|
||||||
{
|
{
|
||||||
"folke/lazydev.nvim",
|
"folke/lazydev.nvim",
|
||||||
ft = "lua", -- only load on lua files
|
ft = "lua", -- only load on lua files
|
||||||
|
@ -445,7 +447,6 @@ require('lazy').setup({
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ "folke/neodev.nvim", enabled = false },
|
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
-- Brief aside: **What is LSP?**
|
-- Brief aside: **What is LSP?**
|
||||||
|
|
Loading…
Reference in New Issue