Merge pull request #3 from civ2boss/use_lazydev_instead_of_neodev

This commit is contained in:
Robin Ting 2024-07-02 10:54:04 -04:00 committed by GitHub
commit 6faa96658e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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?**