Update lazydev config to fix "Undefined field fs_stat
" LSP error (#1040)
7513ec8a7d
switched from neodev to lazydev, but in the process it introduced an LSP error in `init.lua`, which degrades the desired "first timer" experience of kickstart.nvim. This commit follows the configuration suggested in6184ebbbc8 (-installation)
which resolves the LSP error.
This commit is contained in:
parent
7513ec8a7d
commit
620732789b
1 changed files with 11 additions and 1 deletions
12
init.lua
12
init.lua
|
@ -413,7 +413,17 @@ require('lazy').setup({
|
|||
|
||||
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
|
||||
-- used for completion, annotations and signatures of Neovim apis
|
||||
{ 'folke/lazydev.nvim', ft = 'lua', opts = {} },
|
||||
{
|
||||
'folke/lazydev.nvim',
|
||||
ft = 'lua',
|
||||
opts = {
|
||||
library = {
|
||||
-- Load luvit types when the `vim.uv` word is found
|
||||
{ path = 'luvit-meta/library', words = { 'vim%.uv' } },
|
||||
},
|
||||
},
|
||||
},
|
||||
{ 'Bilal2453/luvit-meta', lazy = true },
|
||||
},
|
||||
config = function()
|
||||
-- Brief aside: **What is LSP?**
|
||||
|
|
Loading…
Reference in a new issue