diff options
author | Richard Macklin <1863540+rmacklin@users.noreply.github.com> | 2024-07-21 19:08:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-21 22:08:09 -0400 |
commit | 620732789b56ba7770bf12211ad2820309136ff1 (patch) | |
tree | f4fd097e3bcb69153c731242df2f64c6860ea1db | |
parent | 7513ec8a7dd579957ce2d9b44e05c1da18d7d0e3 (diff) |
Update lazydev config to fix "Undefined field `fs_stat`" LSP error (#1040)
7513ec8a7dd579957ce2d9b44e05c1da18d7d0e3 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 in
https://github.com/folke/lazydev.nvim/tree/6184ebbbc8045d70077659b7d30c705a588dc62f#-installation
which resolves the LSP error.
-rw-r--r-- | init.lua | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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?** |